-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: May 05, 2025 at 10:34 PM
-- Server version: 10.6.21-MariaDB-cll-lve
-- PHP Version: 8.3.15
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!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 */;
--
-- Database: `J1brakes`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_actionscheduler_actions`
--
CREATE TABLE `wp_actionscheduler_actions` (
`action_id` bigint(20) UNSIGNED NOT NULL,
`hook` varchar(191) NOT NULL,
`status` varchar(20) NOT NULL,
`scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
`priority` tinyint(3) UNSIGNED NOT NULL DEFAULT 10,
`args` varchar(191) DEFAULT NULL,
`schedule` longtext DEFAULT NULL,
`group_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`attempts` int(11) NOT NULL DEFAULT 0,
`last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`extended_args` varchar(8000) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_actionscheduler_claims`
--
CREATE TABLE `wp_actionscheduler_claims` (
`claim_id` bigint(20) UNSIGNED NOT NULL,
`date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_actionscheduler_groups`
--
CREATE TABLE `wp_actionscheduler_groups` (
`group_id` bigint(20) UNSIGNED NOT NULL,
`slug` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_actionscheduler_logs`
--
CREATE TABLE `wp_actionscheduler_logs` (
`log_id` bigint(20) UNSIGNED NOT NULL,
`action_id` bigint(20) UNSIGNED NOT NULL,
`message` text NOT NULL,
`log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`log_date_local` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`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
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2024-06-12 08:28:15', '2024-06-12 08:28:15', '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 Gravatar .', 0, '1', '', 'comment', 0, 0),
(2, 1847, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2023-09-25 10:38:12', '2023-09-25 10:38:12', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from Gravatar .', 0, '1', '', 'comment', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_e_events`
--
CREATE TABLE `wp_e_events` (
`id` bigint(20) UNSIGNED NOT NULL,
`event_data` text DEFAULT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_hfcm_scripts`
--
CREATE TABLE `wp_hfcm_scripts` (
`script_id` int(10) NOT NULL,
`name` varchar(100) DEFAULT NULL,
`snippet` longtext DEFAULT NULL,
`snippet_type` enum('html','js','css') DEFAULT 'html',
`device_type` enum('mobile','desktop','both') DEFAULT 'both',
`location` varchar(100) NOT NULL,
`display_on` enum('All','s_pages','s_posts','s_categories','s_custom_posts','s_tags','s_is_home','s_is_search','s_is_archive','latest_posts','manual') NOT NULL DEFAULT 'All',
`lp_count` int(10) DEFAULT NULL,
`s_pages` mediumtext DEFAULT NULL,
`ex_pages` mediumtext DEFAULT NULL,
`s_posts` mediumtext DEFAULT NULL,
`ex_posts` mediumtext DEFAULT NULL,
`s_custom_posts` varchar(300) DEFAULT NULL,
`s_categories` varchar(300) DEFAULT NULL,
`s_tags` varchar(300) DEFAULT NULL,
`status` enum('active','inactive') NOT NULL DEFAULT 'active',
`created_by` varchar(300) DEFAULT NULL,
`last_modified_by` varchar(300) DEFAULT NULL,
`created` datetime DEFAULT NULL,
`last_revision_date` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_hfcm_scripts`
--
INSERT INTO `wp_hfcm_scripts` (`script_id`, `name`, `snippet`, `snippet_type`, `device_type`, `location`, `display_on`, `lp_count`, `s_pages`, `ex_pages`, `s_posts`, `ex_posts`, `s_custom_posts`, `s_categories`, `s_tags`, `status`, `created_by`, `last_modified_by`, `created`, `last_revision_date`) VALUES
(1, 'Google Tag Manager', '<script async src="https://www.googletagmanager.com/gtag/js?id=G-TDEKKSHHL7"></script>\r\n<script>\r\n window.dataLayer = window.dataLayer || [];\r\n function gtag(){dataLayer.push(arguments);}\r\n gtag('js', new Date());\r\n\r\n gtag('config', 'G-TDEKKSHHL7');\r\n</script>', 'js', 'both', 'header', 'All', 5, '[]', '[]', '[]', '[]', '[]', '[]', '[]', 'active', 'J1brakes', 'J1brakes', '2024-10-23 07:03:28', '2024-10-23 07:05:59');
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`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 ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_litespeed_url`
--
CREATE TABLE `wp_litespeed_url` (
`id` bigint(20) NOT NULL,
`url` varchar(500) NOT NULL,
`cache_tags` varchar(1000) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_litespeed_url_file`
--
CREATE TABLE `wp_litespeed_url_file` (
`id` bigint(20) NOT NULL,
`url_id` bigint(20) NOT NULL,
`vary` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of final vary',
`filename` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of file content',
`type` tinyint(4) NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
`mobile` tinyint(4) NOT NULL COMMENT 'mobile=1',
`webp` tinyint(4) NOT NULL COMMENT 'webp=1',
`expired` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'https://j1brakes.com', 'yes'),
(2, 'home', 'https://j1brakes.com', 'yes'),
(3, 'blogname', 'J1 Brakes', 'yes'),
(4, 'blogdescription', '', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'mani.prognamik@gmail.com', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:204:{s:13:\".*-misc\\.xml$\";s:40:\"index.php?xml_sitemap=params=$matches[2]\";s:17:\".*-misc\\.xml\\.gz$\";s:49:\"index.php?xml_sitemap=params=$matches[2];zip=true\";s:14:\".*-misc\\.html$\";s:50:\"index.php?xml_sitemap=params=$matches[2];html=true\";s:18:\".*-misc\\.html\\.gz$\";s:59:\"index.php?xml_sitemap=params=$matches[2];html=true;zip=true\";s:43:\".*-sitemap(?:\\d{1,4}(?!-misc)|-misc)?\\.xml$\";s:40:\"index.php?xml_sitemap=params=$matches[2]\";s:47:\".*-sitemap(?:\\d{1,4}(?!-misc)|-misc)?\\.xml\\.gz$\";s:49:\"index.php?xml_sitemap=params=$matches[2];zip=true\";s:44:\".*-sitemap(?:\\d{1,4}(?!-misc)|-misc)?\\.html$\";s:50:\"index.php?xml_sitemap=params=$matches[2];html=true\";s:48:\".*-sitemap(?:\\d{1,4}(?!-misc)|-misc)?\\.html\\.gz$\";s:59:\"index.php?xml_sitemap=params=$matches[2];html=true;zip=true\";s:40:\"sitemap(?:\\d{1,4}(?!-misc)|-misc)?\\.xml$\";s:40:\"index.php?xml_sitemap=params=$matches[2]\";s:44:\"sitemap(?:\\d{1,4}(?!-misc)|-misc)?\\.xml\\.gz$\";s:49:\"index.php?xml_sitemap=params=$matches[2];zip=true\";s:41:\"sitemap(?:\\d{1,4}(?!-misc)|-misc)?\\.html$\";s:50:\"index.php?xml_sitemap=params=$matches[2];html=true\";s:44:\"sitemap(?:\\d{1,4}(?!-misc)|-misc)?\\.html.gz$\";s:59:\"index.php?xml_sitemap=params=$matches[2];html=true;zip=true\";s:13:\"portfolios/?$\";s:36:\"index.php?post_type=liquid-portfolio\";s:30:\"portfolios/page/([0-9]{1,})/?$\";s:54:\"index.php?post_type=liquid-portfolio&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:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\"liquid-title-wrapper/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:58:\"liquid-title-wrapper/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:78:\"liquid-title-wrapper/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"liquid-title-wrapper/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"liquid-title-wrapper/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"liquid-title-wrapper/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"liquid-title-wrapper/([^/]+)/embed/?$\";s:53:\"index.php?liquid-title-wrapper=$matches[1]&embed=true\";s:41:\"liquid-title-wrapper/([^/]+)/trackback/?$\";s:47:\"index.php?liquid-title-wrapper=$matches[1]&tb=1\";s:49:\"liquid-title-wrapper/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?liquid-title-wrapper=$matches[1]&paged=$matches[2]\";s:56:\"liquid-title-wrapper/([^/]+)/comment-page-([0-9]{1,})/?$\";s:60:\"index.php?liquid-title-wrapper=$matches[1]&cpage=$matches[2]\";s:45:\"liquid-title-wrapper/([^/]+)(?:/([0-9]+))?/?$\";s:59:\"index.php?liquid-title-wrapper=$matches[1]&page=$matches[2]\";s:37:\"liquid-title-wrapper/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"liquid-title-wrapper/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"liquid-title-wrapper/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"liquid-title-wrapper/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"liquid-title-wrapper/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"liquid-title-wrapper/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:43:\"index.php?portfolios=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:37:\"index.php?portfolios=$matches[1]&tb=1\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?portfolios=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?portfolios=$matches[1]&cpage=$matches[2]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?portfolios=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio-category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:47:\"portfolio-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:41:\"liquid-archives/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"liquid-archives/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"liquid-archives/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"liquid-archives/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"liquid-archives/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"liquid-archives/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"liquid-archives/(.+?)/embed/?$\";s:48:\"index.php?liquid-archives=$matches[1]&embed=true\";s:34:\"liquid-archives/(.+?)/trackback/?$\";s:42:\"index.php?liquid-archives=$matches[1]&tb=1\";s:42:\"liquid-archives/(.+?)/page/?([0-9]{1,})/?$\";s:55:\"index.php?liquid-archives=$matches[1]&paged=$matches[2]\";s:49:\"liquid-archives/(.+?)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?liquid-archives=$matches[1]&cpage=$matches[2]\";s:38:\"liquid-archives/(.+?)(?:/([0-9]+))?/?$\";s:54:\"index.php?liquid-archives=$matches[1]&page=$matches[2]\";s:35:\"booking/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"booking/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"booking/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"booking/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"booking/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"booking/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"booking/([^/]+)/embed/?$\";s:47:\"index.php?liquid-booking=$matches[1]&embed=true\";s:28:\"booking/([^/]+)/trackback/?$\";s:41:\"index.php?liquid-booking=$matches[1]&tb=1\";s:36:\"booking/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?liquid-booking=$matches[1]&paged=$matches[2]\";s:43:\"booking/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?liquid-booking=$matches[1]&cpage=$matches[2]\";s:32:\"booking/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?liquid-booking=$matches[1]&page=$matches[2]\";s:24:\"booking/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"booking/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"booking/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"booking/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"booking/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"booking/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"metform-form/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"metform-form/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"metform-form/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"metform-form/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"metform-form/(.+?)/embed/?$\";s:45:\"index.php?metform-form=$matches[1]&embed=true\";s:31:\"metform-form/(.+?)/trackback/?$\";s:39:\"index.php?metform-form=$matches[1]&tb=1\";s:39:\"metform-form/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&paged=$matches[2]\";s:46:\"metform-form/(.+?)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&cpage=$matches[2]\";s:35:\"metform-form/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?metform-form=$matches[1]&page=$matches[2]\";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:41:\"index.php?&page_id=1735&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:10:{i:0;s:23:\"elementor/elementor.php\";i:1;s:32:\"duplicate-page/duplicatepage.php\";i:2;s:36:\"google-sitemap-generator/sitemap.php\";i:4;s:66:\"header-footer-code-manager/99robots-header-footer-code-manager.php\";i:5;s:27:\"hub-booking/hub-booking.php\";i:6;s:41:\"logistics-hub-core/logistics-hub-core.php\";i:7;s:19:\"metform/metform.php\";i:8;s:24:\"wordpress-seo/wp-seo.php\";i:9;s:33:\"wp-bottom-menu/wp-bottom-menu.php\";i:10;s:39:\"wp-file-manager/file_folder_manager.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', 'a:2:{i:0;s:101:\"/home/u365902637/domains/gkrsteels.com/public_html/j1brakes/wp-content/themes/logistics-hub/style.css\";i:1;s:0:\"\";}', 'no'),
(40, 'template', 'logistics-hub', 'yes'),
(41, 'stylesheet', 'logistics-hub', 'yes'),
(42, 'comment_registration', '0', 'yes'),
(43, 'html_type', 'text/html', 'yes'),
(44, 'use_trackback', '0', 'yes'),
(45, 'default_role', 'subscriber', 'yes'),
(46, 'db_version', '58975', 'yes'),
(47, 'uploads_use_yearmonth_folders', '1', 'yes'),
(48, 'upload_path', '', 'yes'),
(49, 'blog_public', '1', 'yes'),
(50, 'default_link_category', '2', 'yes'),
(51, 'show_on_front', 'page', 'yes'),
(52, 'tag_base', '', 'yes'),
(53, 'show_avatars', '1', 'yes'),
(54, 'avatar_rating', 'G', 'yes'),
(55, 'upload_url_path', '', 'yes'),
(56, 'thumbnail_size_w', '150', 'yes'),
(57, 'thumbnail_size_h', '150', 'yes'),
(58, 'thumbnail_crop', '1', 'yes'),
(59, 'medium_size_w', '300', 'yes'),
(60, 'medium_size_h', '300', 'yes'),
(61, 'avatar_default', 'mystery', 'yes'),
(62, 'large_size_w', '1024', 'yes'),
(63, 'large_size_h', '1024', 'yes'),
(64, 'image_default_link_type', 'none', 'yes'),
(65, 'image_default_size', '', 'yes'),
(66, 'image_default_align', '', 'yes'),
(67, 'close_comments_for_old_posts', '0', 'yes'),
(68, 'close_comments_days_old', '14', 'yes'),
(69, 'thread_comments', '1', 'yes'),
(70, 'thread_comments_depth', '5', 'yes'),
(71, 'page_comments', '0', 'yes'),
(72, 'comments_per_page', '50', 'yes'),
(73, 'default_comments_page', 'newest', 'yes'),
(74, 'comment_order', 'asc', 'yes'),
(75, 'sticky_posts', 'a:0:{}', 'yes'),
(76, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(77, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(78, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(79, 'uninstall_plugins', 'a:3:{s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";}', 'no'),
(80, 'timezone_string', '', 'yes'),
(81, 'page_for_posts', '0', 'yes'),
(82, 'page_on_front', '1735', 'yes'),
(83, 'default_post_format', '0', 'yes'),
(84, 'link_manager_enabled', '0', 'yes'),
(85, 'finished_splitting_shared_terms', '1', 'yes'),
(86, 'site_icon', '1922', 'yes'),
(87, 'medium_large_size_w', '768', 'yes'),
(88, 'medium_large_size_h', '0', 'yes'),
(89, 'wp_page_for_privacy_policy', '3', 'yes'),
(90, 'show_comments_cookies_opt_in', '1', 'yes'),
(91, 'admin_email_lifespan', '1752743579', 'yes'),
(92, 'disallowed_keys', '', 'no'),
(93, 'comment_previously_approved', '1', 'yes'),
(94, 'auto_plugin_theme_update_emails', 'a:0:{}', 'no'),
(95, 'auto_update_core_dev', 'enabled', 'yes'),
(96, 'auto_update_core_minor', 'enabled', 'yes'),
(97, 'auto_update_core_major', 'enabled', 'yes'),
(98, 'wp_force_deactivated_plugins', 'a:0:{}', 'off'),
(99, 'wp_attachment_pages_enabled', '0', 'yes'),
(100, 'initial_db_version', '57155', 'yes'),
(101, 'wp_user_roles', 'a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:115:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}', 'yes'),
(102, 'fresh_site', '0', 'off'),
(103, 'user_count', '2', 'off'),
(104, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"
Purged all caches successfully.<\\/p><\\/div>\"]', 'yes'),
(371, 'litespeed.optimize.timestamp_purge_css', '1738654186', 'yes'),
(390, 'current_theme', 'Logistics Hub', 'yes'),
(391, 'theme_mods_logistics-hub', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:23;s:11:\"wpbm_custom\";i:25;}s:18:\"custom_css_post_id\";i:2181;s:11:\"custom_logo\";i:1922;}', 'yes'),
(392, 'theme_switched', '', 'yes'),
(396, 'elementor_onboarded', '1', 'yes'),
(413, 'elementor_active_kit', '6', 'yes'),
(414, 'elementor_font_display', 'swap', 'yes'),
(417, 'elementor_version', '3.28.4', 'yes'),
(418, 'elementor_install_history', 'a:16:{s:6:\"3.21.8\";i:1718181284;s:6:\"3.22.1\";i:1718866628;s:6:\"3.23.3\";i:1722504687;s:6:\"3.23.4\";i:1722943476;s:6:\"3.24.4\";i:1727335834;s:6:\"3.24.5\";i:1727825451;s:6:\"3.27.3\";i:1738649385;s:6:\"3.27.4\";i:1739479821;s:6:\"3.27.5\";i:1739739919;s:6:\"3.27.6\";i:1739911836;s:6:\"3.27.7\";i:1741899502;s:6:\"3.28.0\";i:1742245466;s:6:\"3.28.1\";i:1742763265;s:6:\"3.28.2\";i:1743367956;s:6:\"3.28.3\";i:1743540590;s:6:\"3.28.4\";i:1745355005;}', 'yes'),
(419, 'elementor_events_db_version', '1.0.0', 'no'),
(420, 'widget_liquid-newsllter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(421, 'widget_liquid-trending-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(422, 'widget_liquid-latest-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(423, 'widget_social-followers', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(424, 'widget_liquid-next-post', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(426, '_elementor_installed_time', '1718181285', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(427, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:20:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:20:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:20:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:20:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:20:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:20:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:20:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:20:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:20:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:20:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:20:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:20:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:20:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:20:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:20:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:20:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:20:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:20:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:20:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:20:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:20:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:20:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:20:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:20:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:20:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:20:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:20:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic | Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:20:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:20:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:20:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:20:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:20:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:20:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:20:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:20:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:20:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:20:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving & Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:20:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:20:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:20:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:20:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:20:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:20:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:20:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:20:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:20:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App & SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:20:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:20:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:20:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:20:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:20:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:20:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:20:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:20:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:20:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:20:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:20:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:20:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health & Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:20:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:20:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:20:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital & Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:20:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital & Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:20:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:20:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:20:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health & Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:20:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:20:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:20:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:20:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:20:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:20:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:20:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:20:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:20:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:20:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:20:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:20:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:20:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:20:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:20:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:20:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:20:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:20:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:20:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:20:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:20:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:20:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:20:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:20:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:20:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:20:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:20:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:20:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:20:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:20:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:20:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:20:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:20:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:20:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:20:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:20:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:20:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:20:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:20:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:20:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health & Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:20:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:20:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:20:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:20:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:20:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:20:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:20:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:20:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:20:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:20:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club – NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:20:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot – NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:20:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors – NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:20:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends – NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:20:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe – Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:20:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe – Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:20:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe – Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:20:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe – Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:20:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe – Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:20:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe – Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:20:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe – Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:20:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe – Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:20:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:20:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health & Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:20:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:20:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:20:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:20:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health & Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:20:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:20:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:20:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:20:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:20:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:20:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:20:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:20:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:20:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:20:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:20:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:20:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic | Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:20:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:20:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:20:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:20:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic | Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:20:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:20:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:20:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:20:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:20:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:20:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:20:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:20:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:20:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:20:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:20:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:20:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar – Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:20:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion – Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:20:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery – Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:20:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:20:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails – Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:20:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival – Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:20:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course – Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:20:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop – Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:20:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:20:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic – Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:20:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe – Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:20:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:20:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe – About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:20:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:20:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:20:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:20:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe – Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:20:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine – Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:20:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog – Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:20:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant – About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:20:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:20:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency – Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:20:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:20:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:20:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption – Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:20:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:20:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:20:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:20:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise & Fitness Equipment – eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:20:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer – Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:20:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe – Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:20:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:20:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe – Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:20:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation – Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:20:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:20:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:20:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events – Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:20:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training – Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:20:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:20:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe – About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:20:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses – Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:20:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:20:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe – Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:20:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop – eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:20:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace – Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:20:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa & Beauty – Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:20:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:20:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:20:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening – Health & Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:20:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company – Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:20:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:20:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management – Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:20:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact – Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:20:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:20:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:20:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care – Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:20:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:20:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones – eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:20:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe – Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:20:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference – Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:20:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe – Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:20:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:20:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:20:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe – Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:20:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course – eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:20:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:20:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:20:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:20:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:20:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency – Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:20:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash – Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:20:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography – Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:20:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:20:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:20:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School – Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:20:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer – Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:20:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:20:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker – Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:20:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:20:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:20:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:20:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:20:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor – Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:20:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe – About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:20:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach – Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:20:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe – Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:20:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:20:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:20:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe – About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:20:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:20:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:20:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:20:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:20:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale – eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:20:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing & Moving Company – Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:20:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer – Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:20:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:20:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design – Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:20:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management – Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:20:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:20:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog – Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:20:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center – Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:20:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:20:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:20:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe – Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:20:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:20:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course – Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:20:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:20:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe – Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:20:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian – Health & Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:20:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe – Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:20:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef – Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:20:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe – Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:20:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:20:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course – Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:20:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe – Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:20:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant – Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:20:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:20:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:20:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project – Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:20:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer – Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:20:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog & Cat Food Delivery – Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:20:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:20:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:20:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming – Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:20:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition – Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:20:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:20:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course – Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:20:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger – Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:20:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor – Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:20:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:20:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:20:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio – Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:20:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery – Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:20:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar – Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:20:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop – Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:20:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:20:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer – Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:20:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:20:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:20:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App – Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:20:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:20:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:20:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:20:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale – eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:20:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare – Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:20:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:20:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:20:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:20:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare – Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:20:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:20:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:20:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:20:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service – Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:20:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine – Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:20:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:20:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform – Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:20:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company – About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:20:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store – Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:20:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction – Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:20:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:20:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:20:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency – About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:20:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic – Health & Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:20:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:20:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:20:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:20:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store – Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:20:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School – Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:20:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:20:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency – Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:20:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:20:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:20:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:20:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:20:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:20:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children’s Optometrist – Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:20:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:20:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:20:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:20:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:20:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:20:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon – Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:20:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant – Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:20:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:20:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon – Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:20:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:20:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon – Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:20:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:20:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon – Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:20:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:20:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:20:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:20:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency – Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:20:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:20:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page – Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:20:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:20:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:20:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page – Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:20:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:20:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:20:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product – eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:20:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:20:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:20:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym – App Service – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:20:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio – Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:20:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale – eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:20:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio – Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:20:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion – eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:20:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:20:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale – eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:20:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:20:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:20:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:20:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef – Thank You Page – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:20:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:20:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course – Thank You Page – Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:20:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:20:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:20:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:20:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:20:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:20:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:20:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:20:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:20:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:20:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:20:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:20:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform – Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:20:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:20:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:20:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:20:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store – Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:20:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:20:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:20:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:20:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:20:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:20:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:20:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate – News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:20:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store – Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:20:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:20:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:20:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency – Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:20:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:20:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant – Chef’s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:20:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant – Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:20:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:20:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop – 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:20:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:20:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant – Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:20:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop – Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:20:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant – Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:20:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:20:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:20:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:20:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop – Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:20:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop – Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:20:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:20:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:20:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:20:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop – Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:20:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:20:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:20:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course – Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:20:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:20:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:20:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:20:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home – Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:20:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:20:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:20:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design – Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:20:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:20:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:20:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:20:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:20:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:20:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography – Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:20:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography – Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:20:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:20:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography – Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:20:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography – Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:20:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography – Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:20:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:20:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography – Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:20:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:20:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography – Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:20:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography – Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:20:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography – B&W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:20:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:20:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography – Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:20:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:20:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:20:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:20:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:20:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:20:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel – Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:20:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:20:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel – Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:20:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:20:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel – FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:20:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:20:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel – Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:20:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio – Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:20:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:20:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:20:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:20:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio – Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:20:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:20:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:20:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:20:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:20:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:20:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:20:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm – Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:20:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:20:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym – Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:20:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:20:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm – Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:20:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact 16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:20:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:20:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:20:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm – Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:20:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:20:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency – Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:20:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym – Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:20:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:20:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:20:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:20:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:20:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency – Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:20:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:20:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym – Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:20:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:20:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm – Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:20:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:20:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency – Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:20:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:20:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:20:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:20:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym – Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:20:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:20:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency – Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:20:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:20:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:20:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:20:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:20:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:20:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:20:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:20:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:20:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:20:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:20:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:20:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:20:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:20:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:20:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:20:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:20:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:20:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:20:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:20:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:20:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:20:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:20:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:20:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:20:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:20:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:20:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:20:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:20:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:20:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:20:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:20:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:20:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:20:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:20:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:20:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:20:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:20:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:20:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:20:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:20:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:20:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:20:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:20:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:20:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:20:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:20:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:20:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:20:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:20:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:20:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:20:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:20:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:20:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:20:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:20:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:20:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:20:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:20:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:20:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:20:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:20:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:20:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:20:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:20:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:20:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:20:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:20:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:20:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:20:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:20:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:20:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:20:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:20:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:20:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company – Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:20:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:20:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:20:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:20:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:20:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:20:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:20:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:20:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:20:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:20:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:20:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:20:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:20:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:20:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:20:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:20:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:20:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:20:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:20:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:20:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:20:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:20:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:20:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:20:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:20:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:20:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:20:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:20:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:20:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:20:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:20:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:20:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:20:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:20:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:20:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:20:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:20:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:20:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:20:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:20:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:20:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:20:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:20:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:20:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:20:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:20:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:20:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:20:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:20:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:20:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:20:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design – Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:20:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design – News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:20:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design – Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:20:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design – Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:20:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant – 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:20:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:20:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant – Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:20:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:20:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm – Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:20:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:20:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:20:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm – Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:20:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:20:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate – 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:20:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:20:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:20:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate – Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:20:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate – Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:20:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate – single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:20:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:20:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine – Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:20:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:20:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:20:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine – Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:20:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine – Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:20:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine – Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:20:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:20:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:20:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:20:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:20:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course – End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:20:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:20:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course – Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:20:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course – Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:20:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:20:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography – Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:20:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:20:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography – Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:20:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:20:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:20:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:20:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:20:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:20:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:20:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio – Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:20:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:20:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:20:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio – Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:20:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:20:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:20:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:20:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:20:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:20:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:20:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:20:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:20:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:20:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:20:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:20:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:20:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:20:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:20:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:20:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:20:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:20:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:20:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:20:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:20:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:20:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:20:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:20:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:20:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:20:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:20:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:20:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:20:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:20:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:20:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:20:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:20:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:20:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:20:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:20:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:20:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist – single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:20:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:20:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist – single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:20:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:20:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:20:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:20:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:20:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:20:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:20:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:20:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:20:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:20:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:20:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:20:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:20:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:20:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:20:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:20:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:20:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:20:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:20:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:20:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:20:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:20:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:20:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:20:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:20:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:20:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:20:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:20:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:20:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:20:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:20:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:20:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:20:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:20:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:20:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:20:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:20:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:20:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:20:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:20:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:20:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:20:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:20:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:20:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:20:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:20:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:20:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:20:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:20:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:20:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:20:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:20:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:20:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:20:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:20:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:20:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:20:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:20:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:20:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:20:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:20:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:20:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:20:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:20:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:20:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:20:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:20:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:20:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:20:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:20:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:20:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:20:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:20:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:20:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:20:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:20:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:20:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:20:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:20:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:20:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:20:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:20:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:20:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:20:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:20:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:20:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:20:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:20:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:20:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:20:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:20:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:20:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:20:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:20:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:20:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:20:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:20:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:20:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel – Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:20:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel – Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:20:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel – Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:20:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel – Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:20:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:20:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:20:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog – Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:20:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog – Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:20:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:20:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:20:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog – Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:20:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog – Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(428, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:101:\"Introducing Elementor 3.27: Flexible Grids, Better Security, Enhanced Accessibility & More Creativity\";s:7:\"excerpt\";s:409:\"Elementor 3.27 is packed with features designed to give you more control, boost your site’s performance, enhance accessibility, and take your creativity to new heights. This version is all about solving real challenges—whether it’s designing intricate Grid layouts, embedding modern video formats, or adding effortless animations, Elementor 3.27 makes your workflow smoother and your websites smarter.\r\n\";s:7:\"created\";i:1738142681;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:155:\"https://elementor.com/blog/elementor-327-grid-layouts-local-google-fonts-ai-motion/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:62:\"Introducing Hello Biz: A New Beginner Friendly WordPress Theme\";s:7:\"excerpt\";s:226:\"The first in a new collection of beginner-friendly Hello Themes, Hello Biz aims to make building Professional websites easier. Designed to streamline website creation, by helping you build a polished, high-performance website.\";s:7:\"created\";i:1736335773;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:121:\"https://elementor.com/blog/introducing-hello-biz/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:65:\"Introducing Elementor 3.26: Dynamic Design & Enhanced Performance\";s:7:\"excerpt\";s:192:\"Boost your site’s speed and performance with optimized CSS and a cleaner DOM, create dynamic content with an Off-Canvas modal from Loop Grids, and leverage the new AdBlock detection trigger.\";s:7:\"created\";i:1736174778;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:146:\"https://elementor.com/blog/elementor-326-off-canvas-loop-grid-performance/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'off'),
(431, 'metform__banner_last_check', '1746164282', 'yes'),
(432, 'metform__banner_data', 'O:8:\"stdClass\":10:{s:8:\"10013005\";O:8:\"stdClass\":7:{s:2:\"id\";i:10013005;s:5:\"title\";s:35:\"Wpmet Holiday Notice Dashboard 2024\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1734825600;s:3:\"end\";i:1737244800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:22:\"www.wpmet.com/noticeNY\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:579:\"
holiday sales from Wpmet \r\n
Save up to $2,986 on Premium WordPress Bundle Plugin! \r\n
Get up to 30% discounts on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!
\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10013004\";O:8:\"stdClass\":7:{s:2:\"id\";i:10013004;s:5:\"title\";s:34:\"Wpmet Holiday Notice Ownpages 2024\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1734825600;s:3:\"end\";i:1737244800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:22:\"www.wpmet.com/noticeNY\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:579:\"
holiday sales from Wpmet \r\n
Save up to $2,986 on Premium WordPress Bundle Plugin! \r\n
Get up to 30% discounts on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!
\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10012223\";O:8:\"stdClass\":7:{s:2:\"id\";i:10012223;s:5:\"title\";s:30:\"Wpmet BFCM Notice OwnPage 2024\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1732060800;s:3:\"end\";i:1734480000;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:17:\"wpmet.com/bfcmN24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:563:\"
Black friday sales from Wpmet \r\n
Save up to $2,986 on Premium Bundle LifeTime! \r\n
Get 40% discounts on each of our PRO plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!
\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10012221\";O:8:\"stdClass\":7:{s:2:\"id\";i:10012221;s:5:\"title\";s:32:\"Wpmet BFCM Notice Dashboard 2024\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1732060800;s:3:\"end\";i:1734480000;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:17:\"wpmet.com/bfcmN24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:563:\"
Black friday sales from Wpmet \r\n
Save up to $2,986 on Premium Bundle LifeTime! \r\n
Get 40% discounts on each of our PRO plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!
\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011354\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011354;s:5:\"title\";s:34:\"Wpmet Halloween Sale 2024 Own Page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1729382400;s:3:\"end\";i:1731196800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\" https://wpmet.com/halloweensale24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:569:\"
HAlloween sales from Wpmet \r\n
Save up to $180 on Premium WordPress Plugins! \r\n
Get 30% discounts on each of our PRO plugins — ElementsKit, Gutenkit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver lifetime bundles to save 80% instantly!
\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011353\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011353;s:5:\"title\";s:35:\"Wpmet Halloween Sale 2024 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1729382400;s:3:\"end\";i:1731196800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\" https://wpmet.com/halloweensale24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:569:\"
Halloween sales from Wpmet \r\n
Save up to $180 on Premium WordPress Plugins! \r\n
Get 30% discounts on each of our PRO plugins — ElementsKit, Gutenkit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver lifetime bundles to save 80% instantly!
\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011319\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011319;s:5:\"title\";s:34:\"Wpmet Birthday Sale 2024 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1720396800;s:3:\"end\";i:1723680000;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:22:\"https://wpmet.com/bd24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:559:\"
Birthday sales from Wpmet \r\n
Save up to $180 on Premium WordPress Plugins! \r\n
Get 30% discounts on each of our PRO plugins — ElementsKit, Gutenkit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!
\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011318\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011318;s:5:\"title\";s:33:\"Wpmet Birthday Sale 2024 Own Page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1720396800;s:3:\"end\";i:1723680000;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:22:\"https://wpmet.com/bd24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:559:\"
Birthday sales from Wpmet \r\n
Save up to $180 on Premium WordPress Plugins! \r\n
Get 30% discounts on each of our PRO plugins — ElementsKit, Gutenkit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!
\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011283\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011283;s:5:\"title\";s:59:\"GutenKit Early Bird Campaign Wpmet and GetGenie (Dashboard)\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1716940800;s:3:\"end\";i:1719532800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:31:\" https://wpmet.com/gutenltd-not\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:492:\"
GUtenKit pro early bird sale \r\n
Save up to $310 on Latest WordPress Plugin! \r\n
To be an early adopter of this page builder blocks plugin, we’re offering you up to 65% discount on GutenKit Lifetime Deals!
\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2024/05/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011281\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011281;s:5:\"title\";s:59:\"GutenKit Early Bird Campaign Wpmet and GetGenie (Own Pages)\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1716940800;s:3:\"end\";i:1719532800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:31:\" https://wpmet.com/gutenltd-not\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:492:\"
GUtenKit pro early bird sale \r\n
Save up to $310 on Latest WordPress Plugin! \r\n
To be an early adopter of this page builder blocks plugin, we’re offering you up to 65% discount on GutenKit Lifetime Deals!
\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2024/05/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}}', 'yes'),
(436, 'action_scheduler_hybrid_store_demarkation', '8', 'yes'),
(437, 'schema-ActionScheduler_StoreSchema', '7.0.1718181299', 'yes'),
(438, 'schema-ActionScheduler_LoggerSchema', '3.0.1718181299', 'yes'),
(441, 'woocommerce_newly_installed', 'yes', 'yes'),
(442, 'woocommerce_schema_version', '430', 'yes'),
(443, 'woocommerce_store_address', '', 'yes'),
(444, 'woocommerce_store_address_2', '', 'yes'),
(445, 'woocommerce_store_city', '', 'yes'),
(446, 'woocommerce_default_country', 'US:CA', 'yes'),
(447, 'woocommerce_store_postcode', '', 'yes'),
(448, 'woocommerce_allowed_countries', 'all', 'yes'),
(449, 'woocommerce_all_except_countries', '', 'yes'),
(450, 'woocommerce_specific_allowed_countries', '', 'yes'),
(451, 'woocommerce_ship_to_countries', '', 'yes'),
(452, 'woocommerce_specific_ship_to_countries', '', 'yes'),
(453, 'woocommerce_default_customer_address', 'base', 'yes'),
(454, 'woocommerce_calc_taxes', 'no', 'yes'),
(455, 'woocommerce_enable_coupons', 'yes', 'yes'),
(456, 'woocommerce_calc_discounts_sequentially', 'no', 'no'),
(457, 'woocommerce_currency', 'USD', 'yes'),
(458, 'woocommerce_currency_pos', 'left', 'yes'),
(459, 'woocommerce_price_thousand_sep', ',', 'yes'),
(460, 'woocommerce_price_decimal_sep', '.', 'yes'),
(461, 'woocommerce_price_num_decimals', '2', 'yes'),
(462, 'woocommerce_shop_page_id', '9', 'yes'),
(463, 'woocommerce_cart_redirect_after_add', 'no', 'yes'),
(464, 'woocommerce_enable_ajax_add_to_cart', 'yes', 'yes'),
(465, 'woocommerce_placeholder_image', '8', 'yes'),
(466, 'woocommerce_weight_unit', 'kg', 'yes'),
(467, 'woocommerce_dimension_unit', 'cm', 'yes'),
(468, 'woocommerce_enable_reviews', 'yes', 'yes'),
(469, 'woocommerce_review_rating_verification_label', 'yes', 'no'),
(470, 'woocommerce_review_rating_verification_required', 'no', 'no'),
(471, 'woocommerce_enable_review_rating', 'yes', 'yes'),
(472, 'woocommerce_review_rating_required', 'yes', 'no'),
(473, 'woocommerce_manage_stock', 'yes', 'yes'),
(474, 'woocommerce_hold_stock_minutes', '60', 'no'),
(475, 'woocommerce_notify_low_stock', 'yes', 'no'),
(476, 'woocommerce_notify_no_stock', 'yes', 'no'),
(477, 'woocommerce_stock_email_recipient', 'mani.prognamik@gmail.com', 'no'),
(478, 'woocommerce_notify_low_stock_amount', '2', 'no'),
(479, 'woocommerce_notify_no_stock_amount', '0', 'yes'),
(480, 'woocommerce_hide_out_of_stock_items', 'no', 'yes'),
(481, 'woocommerce_stock_format', '', 'yes'),
(482, 'woocommerce_file_download_method', 'force', 'no'),
(483, 'woocommerce_downloads_redirect_fallback_allowed', 'no', 'no'),
(484, 'woocommerce_downloads_require_login', 'no', 'no'),
(485, 'woocommerce_downloads_grant_access_after_payment', 'yes', 'no'),
(486, 'woocommerce_downloads_deliver_inline', '', 'no'),
(487, 'woocommerce_downloads_add_hash_to_filename', 'yes', 'yes'),
(488, 'woocommerce_attribute_lookup_enabled', 'no', 'yes'),
(489, 'woocommerce_attribute_lookup_direct_updates', 'no', 'yes'),
(490, 'woocommerce_product_match_featured_image_by_sku', 'no', 'yes'),
(491, 'woocommerce_prices_include_tax', 'no', 'yes'),
(492, 'woocommerce_tax_based_on', 'shipping', 'yes'),
(493, 'woocommerce_shipping_tax_class', 'inherit', 'yes'),
(494, 'woocommerce_tax_round_at_subtotal', 'no', 'yes'),
(495, 'woocommerce_tax_classes', '', 'yes'),
(496, 'woocommerce_tax_display_shop', 'excl', 'yes'),
(497, 'woocommerce_tax_display_cart', 'excl', 'yes'),
(498, 'woocommerce_price_display_suffix', '', 'yes'),
(499, 'woocommerce_tax_total_display', 'itemized', 'no'),
(500, 'woocommerce_enable_shipping_calc', 'yes', 'no'),
(501, 'woocommerce_shipping_cost_requires_address', 'no', 'yes'),
(502, 'woocommerce_ship_to_destination', 'billing', 'no'),
(503, 'woocommerce_shipping_debug_mode', 'no', 'yes'),
(504, 'woocommerce_enable_guest_checkout', 'yes', 'no'),
(505, 'woocommerce_enable_checkout_login_reminder', 'no', 'no'),
(506, 'woocommerce_enable_signup_and_login_from_checkout', 'no', 'no'),
(507, 'woocommerce_enable_myaccount_registration', 'no', 'no'),
(508, 'woocommerce_registration_generate_username', 'yes', 'no'),
(509, 'woocommerce_registration_generate_password', 'yes', 'no'),
(510, 'woocommerce_erasure_request_removes_order_data', 'no', 'no'),
(511, 'woocommerce_erasure_request_removes_download_data', 'no', 'no'),
(512, 'woocommerce_allow_bulk_remove_personal_data', 'no', 'no'),
(513, 'woocommerce_registration_privacy_policy_text', 'Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].', 'yes'),
(514, 'woocommerce_checkout_privacy_policy_text', 'Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].', 'yes'),
(515, 'woocommerce_delete_inactive_accounts', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(516, 'woocommerce_trash_pending_orders', '', 'no'),
(517, 'woocommerce_trash_failed_orders', '', 'no'),
(518, 'woocommerce_trash_cancelled_orders', '', 'no'),
(519, 'woocommerce_anonymize_completed_orders', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(520, 'woocommerce_email_from_name', 'J1brakes', 'no'),
(521, 'woocommerce_email_from_address', 'mani.prognamik@gmail.com', 'no'),
(522, 'woocommerce_email_header_image', '', 'no'),
(523, 'woocommerce_email_footer_text', '{site_title} — Built with {WooCommerce}', 'no'),
(524, 'woocommerce_email_base_color', '#7f54b3', 'no'),
(525, 'woocommerce_email_background_color', '#f7f7f7', 'no'),
(526, 'woocommerce_email_body_background_color', '#ffffff', 'no'),
(527, 'woocommerce_email_text_color', '#3c3c3c', 'no'),
(528, 'woocommerce_merchant_email_notifications', 'no', 'no'),
(529, 'woocommerce_cart_page_id', '10', 'no'),
(530, 'woocommerce_checkout_page_id', '11', 'no'),
(531, 'woocommerce_myaccount_page_id', '12', 'no'),
(532, 'woocommerce_terms_page_id', '', 'no'),
(533, 'woocommerce_checkout_pay_endpoint', 'order-pay', 'yes'),
(534, 'woocommerce_checkout_order_received_endpoint', 'order-received', 'yes'),
(535, 'woocommerce_myaccount_add_payment_method_endpoint', 'add-payment-method', 'yes'),
(536, 'woocommerce_myaccount_delete_payment_method_endpoint', 'delete-payment-method', 'yes'),
(537, 'woocommerce_myaccount_set_default_payment_method_endpoint', 'set-default-payment-method', 'yes'),
(538, 'woocommerce_myaccount_orders_endpoint', 'orders', 'yes'),
(539, 'woocommerce_myaccount_view_order_endpoint', 'view-order', 'yes'),
(540, 'woocommerce_myaccount_downloads_endpoint', 'downloads', 'yes'),
(541, 'woocommerce_myaccount_edit_account_endpoint', 'edit-account', 'yes'),
(542, 'woocommerce_myaccount_edit_address_endpoint', 'edit-address', 'yes'),
(543, 'woocommerce_myaccount_payment_methods_endpoint', 'payment-methods', 'yes'),
(544, 'woocommerce_myaccount_lost_password_endpoint', 'lost-password', 'yes'),
(545, 'woocommerce_logout_endpoint', 'customer-logout', 'yes'),
(546, 'woocommerce_api_enabled', 'no', 'yes'),
(547, 'woocommerce_allow_tracking', 'no', 'no'),
(548, 'woocommerce_show_marketplace_suggestions', 'yes', 'no'),
(549, 'woocommerce_custom_orders_table_enabled', 'no', 'yes'),
(550, 'woocommerce_analytics_enabled', 'yes', 'yes'),
(551, 'woocommerce_feature_order_attribution_enabled', 'yes', 'yes'),
(552, 'woocommerce_feature_product_block_editor_enabled', 'no', 'yes'),
(553, 'woocommerce_single_image_width', '600', 'yes'),
(554, 'woocommerce_thumbnail_image_width', '300', 'yes'),
(555, 'woocommerce_checkout_highlight_required_fields', 'yes', 'yes'),
(556, 'woocommerce_demo_store', 'no', 'no'),
(557, 'wc_downloads_approved_directories_mode', 'enabled', 'yes'),
(559, 'woocommerce_permalinks', 'a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}', 'yes'),
(560, 'current_theme_supports_woocommerce', 'yes', 'yes'),
(561, 'woocommerce_queue_flush_rewrite_rules', 'no', 'yes'),
(562, '_transient_wc_attribute_taxonomies', 'a:0:{}', 'yes'),
(563, 'product_cat_children', 'a:0:{}', 'yes'),
(564, 'default_product_cat', '15', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(565, 'liquid_utils_css', '.lqd-bg-layer{padding-top:var(--lqd-bg-layer-pt)}.flex{display:flex}.inline-flex{display:inline-flex}.flex-wrap{flex-wrap:wrap}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.grow-0{flex-grow:0}.grow{flex-grow:1}.basis-auto{flex-basis:auto}.basis-0{flex-basis:0}.mobile\\:flex{display:flex}.mobile-extra\\:flex{display:flex}.tablet\\:flex{display:flex}.tablet-extra\\:flex{display:flex}.mobile\\:inline-flex{display:inline-flex}.mobile-extra\\:inline-flex{display:inline-flex}.tablet\\:inline-flex{display:inline-flex}.tablet-extra\\:inline-flex{display:inline-flex}.grid{display:grid}.inline-grid{display:inline-grid}.grid-area-1-1{grid-area:1/1}.grid-col-start{grid-column-start:1}.grid-row-start{grid-row-start:1}.place-content-center{place-content:center}.grid-span-full{grid-column:1/-1}.grid-flow-row{grid-auto-flow:row}.grid-flow-col{grid-auto-flow:column}.auto-cols-min{grid-auto-columns:min-content}.auto-cols-max{grid-auto-columns:max-content}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.mobile\\:block{display:block}.mobile-extra\\:block{display:block}.tablet\\:block{display:block}.tablet-extra\\:block{display:block}.mobile\\:inline-block{display:inline-block}.mobile-extra\\:inline-block{display:inline-block}.tablet\\:inline-block{display:inline-block}.tablet-extra\\:inline-block{display:inline-block}.hidden{display:none}.hidden-if-empty:empty{display:none!important}.mobile\\:hidden{display:none}.mobile-extra\\:hidden{display:none}.tablet\\:hidden{display:none}.tablet-extra\\:hidden{display:none}.w-full{width:100%}.w-screen{width:100vw}.w-0{width:0}.w-px{width:1px}.w-1em{width:1em}.w-auto{width:auto}.w-min{width:min-content}.w-max{width:max-content}.w-fit{width:fit-content}.h-full{height:100%}.\\!h-full{height:100%!important}.h-screen{height:100vh}.h-svh{height:100svh}.h-0{height:0}.h-px{height:1px}.h-1em{height:1em}.h-auto{height:auto}.min-w-full{min-width:100%}.max-w-none{max-width:none}.\\!max-w-none{max-width:none!important}.max-w-full{max-width:100%}.max-w-1em{max-width:1em}.min-h-full{min-height:100%}.max-h-none{max-height:none}.\\!max-h-none{max-height:none!important}.max-h-full{max-height:100%}.max-h-1em{max-height:1em}.m-0{margin:0}.mt-0{margin-top:0}.mt-auto{margin-top:auto}.mb-0{margin-bottom:0}.ms-auto{margin-inline-start:auto}.me-auto{margin-inline-end:auto}.p-0{padding:0}.pt-0{padding-top:0}.pb-0{padding-bottom:0}.absolute{position:absolute}.relative{position:relative}.fixed{position:fixed}.top-0{top:0}.top-1\\/2{top:50%}.top-full{top:100%}.bottom-0{bottom:0}.bottom-1\\/2{bottom:50%}.bottom-full{bottom:100%}.start-0{inset-inline-start:0}.start-1\\/2{inset-inline-start:50%}.start-full{inset-inline-start:100%}.end-0{inset-inline-end:0}.end-1\\/2{inset-inline-end:50%}.end-full{inset-inline-end:100%}.rounded-inherit{border-radius:inherit}.\\!rounded-inherit{border-radius:inherit!important}.rounded-full{border-radius:10em}.\\!rounded-full{border-radius:10em!important}.aspect-square{aspect-ratio:1/1}.list-none{list-style-type:none}.bg-primary{background:var(--lqd-color-primary, var(--e-global-color-primary))}.bg-secondary{background:var(--lqd-color-secondary, var(--e-global-color-secondary))}.bg-white{background:#fff}.bg-black{background:#000}.bg-current{background:currentColor}.bg-none{background:none}.bg-inherit{background:inherit}.fill-none{fill:none}.fill-inherit{fill:inherit}.fill-current{fill:currentColor}.align-middle{vertical-align:middle}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.user-select-none{user-select:none}.overflow-hidden{overflow:hidden}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-auto{overflow:auto}.overflow-visible{overflow:visible}.invisible{visibility:hidden}.lqd-transform{--lqd-translate-x: 0; --lqd-translate-y: 0; --lqd-rotate: 0; --lqd-skew-x: 0; --lqd-skew-y: 0; --lqd-scale-x: 1; --lqd-scale-y: 1; transform: translate(var(--lqd-translate-x),var(--lqd-translate-y)) rotate(var(--lqd-rotate)) skewX(var(--lqd-skew-x)) skewY(var(--lqd-skew-y)) scaleX(var(--lqd-scale-x)) scaleY(var(--lqd-scale-y))}.lqd-transform-3d{--lqd-translate-x: 0; --lqd-translate-y: 0; --lqd-translate-z: 0; --lqd-rotate: 0; --lqd-skew-x: 0; --lqd-skew-y: 0; --lqd-scale-x: 1; --lqd-scale-y: 1; transform: translate3d(var(--lqd-translate-x),var(--lqd-translate-y),var(--lqd-translate-z)) rotate(var(--lqd-rotate)) skewX(var(--lqd-skew-x)) skewY(var(--lqd-skew-y)) scaleX(var(--lqd-scale-x)) scaleY(var(--lqd-scale-y))}.lqd-transform-perspective{--lqd-transform-perspective: 1200px; --lqd-translate-x: 0; --lqd-translate-y: 0; --lqd-translate-z: 0; --lqd-rotate: 0; --lqd-skew-x: 0; --lqd-skew-y: 0; --lqd-scale-x: 1; --lqd-scale-y: 1; transform: perspective(var(--lqd-transform-perspective)) translate3d(var(--lqd-translate-x),var(--lqd-translate-y),var(--lqd-translate-z)) rotate(var(--lqd-rotate)) skewX(var(--lqd-skew-x)) skewY(var(--lqd-skew-y)) scaleX(var(--lqd-scale-x)) scaleY(var(--lqd-scale-y))}.flip{--lqd-scale-x: -1; --lqd-scale-y: -1}.flip-x{--lqd-scale-x: -1}.flip-y{--lqd-scale-y: -1}.translate-x-0{--lqd-translate-x: 0}.-translate-x-1\\/2{--lqd-translate-x: -50%}.translate-x-1\\/2{--lqd-translate-x: 50%}.-translate-x-full{--lqd-translate-x: -100%}.translate-x-full{--lqd-translate-x: 100%}.translate-y-0{--lqd-translate-y: 0}.-translate-y-1\\/2{--lqd-translate-y: -50%}.translate-y-1\\/2{--lqd-translate-y: 50%}.-translate-y-full{--lqd-translate-y: -100%}.translate-y-full{--lqd-translate-y: 100%}.scale-x-0{--lqd-scale-x: 0}.scale-x-50{--lqd-scale-x: 0.5}.scale-x-100{--lqd-scale-x: 1}.scale-y-0{--lqd-scale-y: 0}.scale-y-50{--lqd-scale-y: 0.5}.scale-y-100{--lqd-scale-y: 1}.perspective{perspective:1200px}.transform-style-3d{transform-style:preserve-3d}.transition-all{transition:all var(--lqd-transition-duration) var(--lqd-transition-timing-function);}.transition-opacity{transition:all var(--lqd-transition-duration) var(--lqd-transition-timing-function); transition-property:opacity,visibility}.transition-colors{transition:all var(--lqd-transition-duration) var(--lqd-transition-timing-function); transition-property:background,color,border,box-shadow,text-shadow,fill,stroke,border-radius}.transition-transform{transition:all var(--lqd-transition-duration) var(--lqd-transition-timing-function); transition-property:transform}.transition-effects{transition:all var(--lqd-transition-duration) var(--lqd-transition-timing-function); transition-property:transform,opacity,filter,background,color,border,box-shadow,text-shadow,fill,stroke,border-radius}.transition-width{transition:all var(--lqd-transition-duration) var(--lqd-transition-timing-function); transition-property:width}.uppercase{text-transform:uppercase}.lowecase{text-transform:lowecase}.capitalize{text-transform:capitalize}.font-light{font-weight:300}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.leading-none{line-height:1}.text-inherit{color:inherit}.text-primary{color:var(--lqd-color-primary, var(--e-global-color-primary))}.text-secondary{color:var(--lqd-color-secondary, var(--e-global-color-secondary))}.text-white{color:#fff}.text-black{color:#000}.decoration-none{text-decoration:none}.-indent-full{text-indent:-99999px}.indent-full{text-indent:99999px}.whitespace-nowrap{white-space:nowrap}.object-cover{object-fit:cover}.object-center{object-position:center}.cursor-pointer{cursor:pointer}.outline-none{outline:none!important}.lqd-aspect-ratio-p{padding-top:var(--lqd-aspect-ratio-p)}.lqd-aspect-ratio{aspect-ratio:var(--lqd-aspect-ratio)}.shadow-sm{box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05)}.shadow{box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.07)}.shadow-md{box-shadow: 0 4px 15px rgb(0 0 0 / 0.07)}.shadow-lg{box-shadow: 0 10px 33px rgb(0 0 0 / 0.07)}.shadow-xl{box-shadow: 0 20px 65px rgb(0 0 0 / 0.07)}.shadow-2xl{box-shadow: 0 25px 80px rgb(0 0 0 / 0.05)}.shadow-none{box-shadow: 0 0 #0000}.lqd-group:hover .lqd-group-hover\\:opacity-0{opacity:0}.lqd-group:hover .lqd-group-hover\\:opacity-100{opacity:1}.lqd-group-btn:hover .lqd-group-btn-hover\\:opacity-0{opacity:0}.lqd-group-btn:hover .lqd-group-btn-hover\\:opacity-100{opacity:1}.lqd-group-box:hover .lqd-group-box-hover\\:opacity-0{opacity:0}.lqd-group-box:hover .lqd-group-box-hover\\:opacity-100{opacity:1}.lqd-group-carousel:hover .lqd-group-carousel-hover\\:opacity-0{opacity:0}.lqd-group-carousel:hover .lqd-group-carousel-hover\\:opacity-100{opacity:1}.lqd-widget-container-grid > .elementor-widget-container{display:grid}.lqd-widget-container-flex > .elementor-widget-container{display:flex}.lqd-widget-container-flex-wrap > .elementor-widget-container{flex-wrap:wrap}.lqd-widget-container-items-center > .elementor-widget-container{align-items:center}.lqd-bubble-arrow{--lqd-bubble-arrow-w:20px;--lqd-bubble-arrow-h:10px}.lqd-bubble-arrow:after{content: \"\" !important; display: inline-block; width: var(--lqd-bubble-arrow-w); height: var(--lqd-bubble-arrow-h); background:inherit; position: absolute; z-index: 1}.lqd-bubble-arrow-top:after, .lqd-bubble-arrow-bottom:after{inset-inline-start:calc(50% - (var(--lqd-bubble-arrow-w) / 2))}.lqd-bubble-arrow-start:after, .lqd-bubble-arrow-end:after{--lqd-bubble-arrow-w:10px;--lqd-bubble-arrow-h:20px; top:calc(50% - (var(--lqd-bubble-arrow-h) / 2))}.lqd-bubble-arrow-top:after{top: calc((var(--lqd-bubble-arrow-h) - 1px) * -1); clip-path: polygon(50% 0, 0 100%, 100% 100%)}.lqd-bubble-arrow-end:after{inset-inline-end: calc((var(--lqd-bubble-arrow-w) - 1px) * -1); clip-path: polygon(0 0, 0 100%, 100% 50%)}.lqd-bubble-arrow-bottom:after{bottom: calc((var(--lqd-bubble-arrow-h) - 1px) * -1); clip-path: polygon(50% 100%, 0 0, 100% 0)}.lqd-bubble-arrow-start:after{inset-inline-start: calc((var(--lqd-bubble-arrow-w) - 1px) * -1); clip-path: polygon(100% 0, 100% 100%, 0 50%)}.lqd-text-vertical{writing-mode:vertical-lr;transform: rotate(180deg)}.lqd-widget-container-text-vertical > .elementor-widget-container{writing-mode:vertical-lr;transform: rotate(180deg)}[data-lqd-page-color-scheme=dark] .lqd-dark\\:inline, [data-lqd-color-scheme=dark] .lqd-dark\\:inline{display:inline}[data-lqd-page-color-scheme=dark] .lqd-dark\\:block, [data-lqd-color-scheme=dark] .lqd-dark\\:block{display:block}[data-lqd-page-color-scheme=dark] .lqd-dark\\:inline-block, [data-lqd-color-scheme=dark] .lqd-dark\\:inline-block{display:inline-block}[data-lqd-page-color-scheme=dark] .lqd-dark\\:flex, [data-lqd-color-scheme=dark] .lqd-dark\\:flex{display:flex}[data-lqd-page-color-scheme=dark] .lqd-dark\\:inline-flex, [data-lqd-color-scheme=dark] .lqd-dark\\:inline-flex{display:inline-flex}[data-lqd-page-color-scheme=dark] .lqd-dark\\:hidden, [data-lqd-color-scheme=dark] .lqd-dark\\:hidden{display:none}[data-lqd-container-is-sticky=true] .lqd-sticky\\:inline{display:inline}[data-lqd-container-is-sticky=true] .lqd-sticky\\:block{display:block}[data-lqd-container-is-sticky=true] .lqd-sticky\\:inline-block{display:inline-block}[data-lqd-container-is-sticky=true] .lqd-sticky\\:flex{display:flex}[data-lqd-container-is-sticky=true] .lqd-sticky\\:inline-flex{display:inline-flex}[data-lqd-container-is-sticky=true] .lqd-sticky\\:hidden{display:none}.e-child[data-lqd-hide-on-sticky=true], .e-child[data-lqd-show-on-sticky=true]{transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s),opacity var(--e-con-opacity-transition-duration,.3s),visibility var(--e-con-visibility-transition-duration,.3s)}.e-child[data-lqd-show-on-sticky=true], [data-lqd-container-is-sticky=true] .e-child[data-lqd-hide-on-sticky=true]{opacity:0; visibility:hidden; pointer-events:none}[data-lqd-container-is-sticky=true] .e-child[data-lqd-show-on-sticky=true]{opacity:1; visibility:visible; pointer-events: auto}.lqd-has-before:before{content: attr(data-lqd-before-content)}.lqd-before\\:flex:before{display:flex}.lqd-before\\:inline-flex:before{display:inline-flex}.lqd-before\\:block:before{display:block}.lqd-before\\:inline-block:before{display:inline-block}.lqd-before\\:w-full:before{width:100%}.lqd-before\\:w-px:before{width:1px}.lqd-before\\:h-full:before{height:100%}.lqd-before\\:h-px:before{height:1px}.lqd-before\\:absolute:before{position:absolute}.lqd-before\\:relative:before{position:relative}.lqd-before\\:top-0:before{top:0}.lqd-before\\:top-1\\/2:before{top:50%}.lqd-before\\:top-full:before{top:100%}.lqd-before\\:bottom-0:before{bottom:0}.lqd-before\\:bottom-1\\/2:before{bottom:50%}.lqd-before\\:bottom-full:before{bottom:100%}.lqd-before\\:start-0:before{inset-inline-start:0}.lqd-before\\:start-1\\/2:before{inset-inline-start:50%}.lqd-before\\:start-full:before{inset-inline-start:100%}.lqd-before\\:end-0:before{inset-inline-end:0}.lqd-before\\:end-1\\/2:before{inset-inline-end:50%}.lqd-before\\:end-full:before{inset-inline-end:100%}.lqd-before\\:rounded-inherit:before{border-radius:inherit}.lqd-before\\:bg-current:before{background:currentColor}.lqd-before\\:-translate-x-1\\/2:before{--lqd-translate-x: -50%}.lqd-before\\:translate-x-1\\/2:before{--lqd-translate-x: 50%}.lqd-before\\:-translate-x-full:before{--lqd-translate-x: -100%}.lqd-before\\:translate-x-full:before{--lqd-translate-x: 100%}.lqd-before\\:-translate-y-1\\/2:before{--lqd-translate-y: -50%}.lqd-before\\:translate-y-1\\/2:before{--lqd-translate-y: 50%}.lqd-before\\:-translate-y-full:before{--lqd-translate-y: -100%}.lqd-before\\:translate-y-full:before{--lqd-translate-y: 100%}.lqd-has-after:after{content: attr(data-lqd-after-content)}.lqd-after\\:flex:after{display:flex}.lqd-after\\:inline-flex:after{display:inline-flex}.lqd-after\\:block:after{display:block}.lqd-after\\:inline-block:after{display:inline-block}.lqd-after\\:w-full:after{width:100%}.lqd-after\\:w-px:after{width:1px}.lqd-after\\:h-full:after{height:100%}.lqd-after\\:h-px:after{height:1px}.lqd-after\\:absolute:after{position:absolute}.lqd-after\\:relative:after{position:relative}.lqd-after\\:top-0:after{top:0}.lqd-after\\:top-1\\/2:after{top:50%}.lqd-after\\:top-full:after{top:100%}.lqd-after\\:bottom-0:after{bottom:0}.lqd-after\\:bottom-1\\/2:after{bottom:50%}.lqd-after\\:bottom-full:after{bottom:100%}.lqd-after\\:start-0:after{inset-inline-start:0}.lqd-after\\:start-1\\/2:after{inset-inline-start:50%}.lqd-after\\:start-full:after{inset-inline-start:100%}.lqd-after\\:end-0:after{inset-inline-end:0}.lqd-after\\:end-1\\/2:after{inset-inline-end:50%}.lqd-after\\:end-full:after{inset-inline-end:100%}.lqd-after\\:rounded-inherit:after{border-radius:inherit}.lqd-after\\:bg-current:after{background:currentColor}.lqd-after\\:-translate-x-1\\/2:after{--lqd-translate-x: -50%}.lqd-after\\:translate-x-1\\/2:after{--lqd-translate-x: 50%}.lqd-after\\:-translate-x-full:after{--lqd-translate-x: -100%}.lqd-after\\:translate-x-full:after{--lqd-translate-x: 100%}.lqd-after\\:-translate-y-1\\/2:after{--lqd-translate-y: -50%}.lqd-after\\:translate-y-1\\/2:after{--lqd-translate-y: 50%}.lqd-after\\:-translate-y-full:after{--lqd-translate-y: -100%}.lqd-after\\:translate-y-full:after{--lqd-translate-y: 100%}.text-start{text-align:start}.items-start{align-items:start}.justify-start{justify-content:start}.align-self-start{align-self:start}.text-center{text-align:center}.items-center{align-items:center}.justify-center{justify-content:center}.align-self-center{align-self:center}.text-end{text-align:end}.items-end{align-items:end}.justify-end{justify-content:end}.align-self-end{align-self:end}.align-self-stretch{align-self:stretch}.justify-between{justify-content:space-between}.columns-1{grid-template-columns:repeat(1,1fr)}.columns-2{grid-template-columns:repeat(2,1fr)}.columns-3{grid-template-columns:repeat(3,1fr)}.columns-4{grid-template-columns:repeat(4,1fr)}.columns-5{grid-template-columns:repeat(5,1fr)}.columns-6{grid-template-columns:repeat(6,1fr)}.columns-7{grid-template-columns:repeat(7,1fr)}.columns-8{grid-template-columns:repeat(8,1fr)}.columns-9{grid-template-columns:repeat(9,1fr)}.columns-10{grid-template-columns:repeat(10,1fr)}.columns-11{grid-template-columns:repeat(11,1fr)}.columns-12{grid-template-columns:repeat(12,1fr)}.gap-2{gap:2px}.gap-4{gap:4px}.gap-6{gap:6px}.gap-8{gap:8px}.gap-10{gap:10px}.gap-12{gap:12px}.gap-14{gap:14px}.gap-16{gap:16px}.gap-18{gap:18px}.gap-20{gap:20px}.gap-22{gap:22px}.gap-24{gap:24px}.gap-26{gap:26px}.gap-28{gap:28px}.gap-30{gap:30px}.w-1\\/12{width:8.3333333333333%}.w-1\\/5{width:8.3333333333333%}.w-2\\/12{width:16.666666666667%}.w-2\\/5{width:16.666666666667%}.w-3\\/12{width:25%}.w-3\\/5{width:25%}.w-4\\/12{width:33.333333333333%}.w-4\\/5{width:33.333333333333%}.w-5\\/12{width:41.666666666667%}.w-5\\/5{width:41.666666666667%}.w-6\\/12{width:50%}.w-7\\/12{width:58.333333333333%}.w-8\\/12{width:66.666666666667%}.w-9\\/12{width:75%}.w-10\\/12{width:83.333333333333%}.w-11\\/12{width:91.666666666667%}.w-2px{width:2px}.h-2px{height:2px}.pt-2{padding-top:2px}.mt-2{margin-top:2px}.pe-2{padding-inline-end:2px}.me-2{margin-inline-end:2px}.pb-2{padding-bottom:2px}.mb-2{margin-bottom:2px}.ps-2{padding-inline-start:2px}.ms-2{margin-inline-start:2px}.w-4px{width:4px}.h-4px{height:4px}.pt-4{padding-top:4px}.mt-4{margin-top:4px}.pe-4{padding-inline-end:4px}.me-4{margin-inline-end:4px}.pb-4{padding-bottom:4px}.mb-4{margin-bottom:4px}.ps-4{padding-inline-start:4px}.ms-4{margin-inline-start:4px}.w-6px{width:6px}.h-6px{height:6px}.pt-6{padding-top:6px}.mt-6{margin-top:6px}.pe-6{padding-inline-end:6px}.me-6{margin-inline-end:6px}.pb-6{padding-bottom:6px}.mb-6{margin-bottom:6px}.ps-6{padding-inline-start:6px}.ms-6{margin-inline-start:6px}.w-8px{width:8px}.h-8px{height:8px}.pt-8{padding-top:8px}.mt-8{margin-top:8px}.pe-8{padding-inline-end:8px}.me-8{margin-inline-end:8px}.pb-8{padding-bottom:8px}.mb-8{margin-bottom:8px}.ps-8{padding-inline-start:8px}.ms-8{margin-inline-start:8px}.w-10px{width:10px}.h-10px{height:10px}.pt-10{padding-top:10px}.mt-10{margin-top:10px}.pe-10{padding-inline-end:10px}.me-10{margin-inline-end:10px}.pb-10{padding-bottom:10px}.mb-10{margin-bottom:10px}.ps-10{padding-inline-start:10px}.ms-10{margin-inline-start:10px}.w-12px{width:12px}.h-12px{height:12px}.pt-12{padding-top:12px}.mt-12{margin-top:12px}.pe-12{padding-inline-end:12px}.me-12{margin-inline-end:12px}.pb-12{padding-bottom:12px}.mb-12{margin-bottom:12px}.ps-12{padding-inline-start:12px}.ms-12{margin-inline-start:12px}.w-14px{width:14px}.h-14px{height:14px}.pt-14{padding-top:14px}.mt-14{margin-top:14px}.pe-14{padding-inline-end:14px}.me-14{margin-inline-end:14px}.pb-14{padding-bottom:14px}.mb-14{margin-bottom:14px}.ps-14{padding-inline-start:14px}.ms-14{margin-inline-start:14px}.w-16px{width:16px}.h-16px{height:16px}.pt-16{padding-top:16px}.mt-16{margin-top:16px}.pe-16{padding-inline-end:16px}.me-16{margin-inline-end:16px}.pb-16{padding-bottom:16px}.mb-16{margin-bottom:16px}.ps-16{padding-inline-start:16px}.ms-16{margin-inline-start:16px}.w-18px{width:18px}.h-18px{height:18px}.pt-18{padding-top:18px}.mt-18{margin-top:18px}.pe-18{padding-inline-end:18px}.me-18{margin-inline-end:18px}.pb-18{padding-bottom:18px}.mb-18{margin-bottom:18px}.ps-18{padding-inline-start:18px}.ms-18{margin-inline-start:18px}.w-20px{width:20px}.h-20px{height:20px}.pt-20{padding-top:20px}.mt-20{margin-top:20px}.pe-20{padding-inline-end:20px}.me-20{margin-inline-end:20px}.pb-20{padding-bottom:20px}.mb-20{margin-bottom:20px}.ps-20{padding-inline-start:20px}.ms-20{margin-inline-start:20px}.w-22px{width:22px}.h-22px{height:22px}.pt-22{padding-top:22px}.mt-22{margin-top:22px}.pe-22{padding-inline-end:22px}.me-22{margin-inline-end:22px}.pb-22{padding-bottom:22px}.mb-22{margin-bottom:22px}.ps-22{padding-inline-start:22px}.ms-22{margin-inline-start:22px}.w-24px{width:24px}.h-24px{height:24px}.pt-24{padding-top:24px}.mt-24{margin-top:24px}.pe-24{padding-inline-end:24px}.me-24{margin-inline-end:24px}.pb-24{padding-bottom:24px}.mb-24{margin-bottom:24px}.ps-24{padding-inline-start:24px}.ms-24{margin-inline-start:24px}.w-26px{width:26px}.h-26px{height:26px}.pt-26{padding-top:26px}.mt-26{margin-top:26px}.pe-26{padding-inline-end:26px}.me-26{margin-inline-end:26px}.pb-26{padding-bottom:26px}.mb-26{margin-bottom:26px}.ps-26{padding-inline-start:26px}.ms-26{margin-inline-start:26px}.w-28px{width:28px}.h-28px{height:28px}.pt-28{padding-top:28px}.mt-28{margin-top:28px}.pe-28{padding-inline-end:28px}.me-28{margin-inline-end:28px}.pb-28{padding-bottom:28px}.mb-28{margin-bottom:28px}.ps-28{padding-inline-start:28px}.ms-28{margin-inline-start:28px}.w-30px{width:30px}.h-30px{height:30px}.pt-30{padding-top:30px}.mt-30{margin-top:30px}.pe-30{padding-inline-end:30px}.me-30{margin-inline-end:30px}.pb-30{padding-bottom:30px}.mb-30{margin-bottom:30px}.ps-30{padding-inline-start:30px}.ms-30{margin-inline-start:30px}.w-32px{width:32px}.h-32px{height:32px}.pt-32{padding-top:32px}.mt-32{margin-top:32px}.pe-32{padding-inline-end:32px}.me-32{margin-inline-end:32px}.pb-32{padding-bottom:32px}.mb-32{margin-bottom:32px}.ps-32{padding-inline-start:32px}.ms-32{margin-inline-start:32px}.w-34px{width:34px}.h-34px{height:34px}.pt-34{padding-top:34px}.mt-34{margin-top:34px}.pe-34{padding-inline-end:34px}.me-34{margin-inline-end:34px}.pb-34{padding-bottom:34px}.mb-34{margin-bottom:34px}.ps-34{padding-inline-start:34px}.ms-34{margin-inline-start:34px}.w-36px{width:36px}.h-36px{height:36px}.pt-36{padding-top:36px}.mt-36{margin-top:36px}.pe-36{padding-inline-end:36px}.me-36{margin-inline-end:36px}.pb-36{padding-bottom:36px}.mb-36{margin-bottom:36px}.ps-36{padding-inline-start:36px}.ms-36{margin-inline-start:36px}.w-38px{width:38px}.h-38px{height:38px}.pt-38{padding-top:38px}.mt-38{margin-top:38px}.pe-38{padding-inline-end:38px}.me-38{margin-inline-end:38px}.pb-38{padding-bottom:38px}.mb-38{margin-bottom:38px}.ps-38{padding-inline-start:38px}.ms-38{margin-inline-start:38px}.w-40px{width:40px}.h-40px{height:40px}.pt-40{padding-top:40px}.mt-40{margin-top:40px}.pe-40{padding-inline-end:40px}.me-40{margin-inline-end:40px}.pb-40{padding-bottom:40px}.mb-40{margin-bottom:40px}.ps-40{padding-inline-start:40px}.ms-40{margin-inline-start:40px}.w-42px{width:42px}.h-42px{height:42px}.pt-42{padding-top:42px}.mt-42{margin-top:42px}.pe-42{padding-inline-end:42px}.me-42{margin-inline-end:42px}.pb-42{padding-bottom:42px}.mb-42{margin-bottom:42px}.ps-42{padding-inline-start:42px}.ms-42{margin-inline-start:42px}.w-44px{width:44px}.h-44px{height:44px}.pt-44{padding-top:44px}.mt-44{margin-top:44px}.pe-44{padding-inline-end:44px}.me-44{margin-inline-end:44px}.pb-44{padding-bottom:44px}.mb-44{margin-bottom:44px}.ps-44{padding-inline-start:44px}.ms-44{margin-inline-start:44px}.w-46px{width:46px}.h-46px{height:46px}.pt-46{padding-top:46px}.mt-46{margin-top:46px}.pe-46{padding-inline-end:46px}.me-46{margin-inline-end:46px}.pb-46{padding-bottom:46px}.mb-46{margin-bottom:46px}.ps-46{padding-inline-start:46px}.ms-46{margin-inline-start:46px}.w-48px{width:48px}.h-48px{height:48px}.pt-48{padding-top:48px}.mt-48{margin-top:48px}.pe-48{padding-inline-end:48px}.me-48{margin-inline-end:48px}.pb-48{padding-bottom:48px}.mb-48{margin-bottom:48px}.ps-48{padding-inline-start:48px}.ms-48{margin-inline-start:48px}.w-50px{width:50px}.h-50px{height:50px}.pt-50{padding-top:50px}.mt-50{margin-top:50px}.pe-50{padding-inline-end:50px}.me-50{margin-inline-end:50px}.pb-50{padding-bottom:50px}.mb-50{margin-bottom:50px}.ps-50{padding-inline-start:50px}.ms-50{margin-inline-start:50px}.w-52px{width:52px}.h-52px{height:52px}.pt-52{padding-top:52px}.mt-52{margin-top:52px}.pe-52{padding-inline-end:52px}.me-52{margin-inline-end:52px}.pb-52{padding-bottom:52px}.mb-52{margin-bottom:52px}.ps-52{padding-inline-start:52px}.ms-52{margin-inline-start:52px}.w-54px{width:54px}.h-54px{height:54px}.pt-54{padding-top:54px}.mt-54{margin-top:54px}.pe-54{padding-inline-end:54px}.me-54{margin-inline-end:54px}.pb-54{padding-bottom:54px}.mb-54{margin-bottom:54px}.ps-54{padding-inline-start:54px}.ms-54{margin-inline-start:54px}.w-56px{width:56px}.h-56px{height:56px}.pt-56{padding-top:56px}.mt-56{margin-top:56px}.pe-56{padding-inline-end:56px}.me-56{margin-inline-end:56px}.pb-56{padding-bottom:56px}.mb-56{margin-bottom:56px}.ps-56{padding-inline-start:56px}.ms-56{margin-inline-start:56px}.w-58px{width:58px}.h-58px{height:58px}.pt-58{padding-top:58px}.mt-58{margin-top:58px}.pe-58{padding-inline-end:58px}.me-58{margin-inline-end:58px}.pb-58{padding-bottom:58px}.mb-58{margin-bottom:58px}.ps-58{padding-inline-start:58px}.ms-58{margin-inline-start:58px}.w-60px{width:60px}.h-60px{height:60px}.pt-60{padding-top:60px}.mt-60{margin-top:60px}.pe-60{padding-inline-end:60px}.me-60{margin-inline-end:60px}.pb-60{padding-bottom:60px}.mb-60{margin-bottom:60px}.ps-60{padding-inline-start:60px}.ms-60{margin-inline-start:60px}.w-62px{width:62px}.h-62px{height:62px}.pt-62{padding-top:62px}.mt-62{margin-top:62px}.pe-62{padding-inline-end:62px}.me-62{margin-inline-end:62px}.pb-62{padding-bottom:62px}.mb-62{margin-bottom:62px}.ps-62{padding-inline-start:62px}.ms-62{margin-inline-start:62px}.w-64px{width:64px}.h-64px{height:64px}.pt-64{padding-top:64px}.mt-64{margin-top:64px}.pe-64{padding-inline-end:64px}.me-64{margin-inline-end:64px}.pb-64{padding-bottom:64px}.mb-64{margin-bottom:64px}.ps-64{padding-inline-start:64px}.ms-64{margin-inline-start:64px}.w-66px{width:66px}.h-66px{height:66px}.pt-66{padding-top:66px}.mt-66{margin-top:66px}.pe-66{padding-inline-end:66px}.me-66{margin-inline-end:66px}.pb-66{padding-bottom:66px}.mb-66{margin-bottom:66px}.ps-66{padding-inline-start:66px}.ms-66{margin-inline-start:66px}.w-68px{width:68px}.h-68px{height:68px}.pt-68{padding-top:68px}.mt-68{margin-top:68px}.pe-68{padding-inline-end:68px}.me-68{margin-inline-end:68px}.pb-68{padding-bottom:68px}.mb-68{margin-bottom:68px}.ps-68{padding-inline-start:68px}.ms-68{margin-inline-start:68px}.w-70px{width:70px}.h-70px{height:70px}.pt-70{padding-top:70px}.mt-70{margin-top:70px}.pe-70{padding-inline-end:70px}.me-70{margin-inline-end:70px}.pb-70{padding-bottom:70px}.mb-70{margin-bottom:70px}.ps-70{padding-inline-start:70px}.ms-70{margin-inline-start:70px}.w-72px{width:72px}.h-72px{height:72px}.pt-72{padding-top:72px}.mt-72{margin-top:72px}.pe-72{padding-inline-end:72px}.me-72{margin-inline-end:72px}.pb-72{padding-bottom:72px}.mb-72{margin-bottom:72px}.ps-72{padding-inline-start:72px}.ms-72{margin-inline-start:72px}.rounded-2{border-radius:2px}.rounded-4{border-radius:4px}.rounded-6{border-radius:6px}.rounded-8{border-radius:8px}.rounded-10{border-radius:10px}.rounded-12{border-radius:12px}.rounded-14{border-radius:14px}.rounded-16{border-radius:16px}.rounded-18{border-radius:18px}.rounded-20{border-radius:20px}.rounded-22{border-radius:22px}.rounded-24{border-radius:24px}.-order-3{order:-3}.-order-2{order:-2}.-order-1{order:-1}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.-z-1{z-index:-1}.z-0{z-index:0}.z-1{z-index:1}.z-2{z-index:2}.z-3{z-index:3}.z-4{z-index:4}.z-5{z-index:5}.z-6{z-index:6}.z-7{z-index:7}.z-8{z-index:8}.z-9{z-index:9}.z-10{z-index:10}.z-99{z-index:99}.opacity-0{opacity:0}.lqd-before\\:opacity-0:before{opacity:0}.lqd-after\\:opacity-0:after{opacity:0}.opacity-5{opacity:0.05}.lqd-before\\:opacity-5:before{opacity:0.05}.lqd-after\\:opacity-5:after{opacity:0.05}.opacity-10{opacity:0.1}.lqd-before\\:opacity-10:before{opacity:0.1}.lqd-after\\:opacity-10:after{opacity:0.1}.opacity-15{opacity:0.15}.lqd-before\\:opacity-15:before{opacity:0.15}.lqd-after\\:opacity-15:after{opacity:0.15}.opacity-20{opacity:0.2}.lqd-before\\:opacity-20:before{opacity:0.2}.lqd-after\\:opacity-20:after{opacity:0.2}.opacity-25{opacity:0.25}.lqd-before\\:opacity-25:before{opacity:0.25}.lqd-after\\:opacity-25:after{opacity:0.25}.opacity-30{opacity:0.3}.lqd-before\\:opacity-30:before{opacity:0.3}.lqd-after\\:opacity-30:after{opacity:0.3}.opacity-35{opacity:0.35}.lqd-before\\:opacity-35:before{opacity:0.35}.lqd-after\\:opacity-35:after{opacity:0.35}.opacity-40{opacity:0.4}.lqd-before\\:opacity-40:before{opacity:0.4}.lqd-after\\:opacity-40:after{opacity:0.4}.opacity-45{opacity:0.45}.lqd-before\\:opacity-45:before{opacity:0.45}.lqd-after\\:opacity-45:after{opacity:0.45}.opacity-50{opacity:0.5}.lqd-before\\:opacity-50:before{opacity:0.5}.lqd-after\\:opacity-50:after{opacity:0.5}.opacity-55{opacity:0.55}.lqd-before\\:opacity-55:before{opacity:0.55}.lqd-after\\:opacity-55:after{opacity:0.55}.opacity-60{opacity:0.6}.lqd-before\\:opacity-60:before{opacity:0.6}.lqd-after\\:opacity-60:after{opacity:0.6}.opacity-65{opacity:0.65}.lqd-before\\:opacity-65:before{opacity:0.65}.lqd-after\\:opacity-65:after{opacity:0.65}.opacity-70{opacity:0.7}.lqd-before\\:opacity-70:before{opacity:0.7}.lqd-after\\:opacity-70:after{opacity:0.7}.opacity-75{opacity:0.75}.lqd-before\\:opacity-75:before{opacity:0.75}.lqd-after\\:opacity-75:after{opacity:0.75}.opacity-80{opacity:0.8}.lqd-before\\:opacity-80:before{opacity:0.8}.lqd-after\\:opacity-80:after{opacity:0.8}.opacity-85{opacity:0.85}.lqd-before\\:opacity-85:before{opacity:0.85}.lqd-after\\:opacity-85:after{opacity:0.85}.opacity-90{opacity:0.9}.lqd-before\\:opacity-90:before{opacity:0.9}.lqd-after\\:opacity-90:after{opacity:0.9}.opacity-95{opacity:0.95}.lqd-before\\:opacity-95:before{opacity:0.95}.lqd-after\\:opacity-95:after{opacity:0.95}.opacity-100{opacity:1}.lqd-before\\:opacity-100:before{opacity:1}.lqd-after\\:opacity-100:after{opacity:1}.text-percent-30{font-size:0.3em}.text-percent-35{font-size:0.35em}.text-percent-40{font-size:0.4em}.text-percent-45{font-size:0.45em}.text-percent-50{font-size:0.5em}.text-percent-55{font-size:0.55em}.text-percent-60{font-size:0.6em}.text-percent-65{font-size:0.65em}.text-percent-70{font-size:0.7em}.text-percent-75{font-size:0.75em}.text-percent-80{font-size:0.8em}.text-percent-85{font-size:0.85em}.text-percent-90{font-size:0.9em}.text-percent-95{font-size:0.95em}.text-percent-100{font-size:1em}.text-percent-105{font-size:1.05em}.text-percent-110{font-size:1.1em}.text-percent-115{font-size:1.15em}.text-percent-120{font-size:1.2em}.text-percent-125{font-size:1.25em}.text-percent-130{font-size:1.3em}.text-percent-135{font-size:1.35em}.text-percent-140{font-size:1.4em}.text-percent-145{font-size:1.45em}.text-percent-150{font-size:1.5em}.text-percent-200{font-size:2em}.text-percent-300{font-size:3em}.text-10{font-size:10px}.text-12{font-size:12px}.text-14{font-size:14px}.text-16{font-size:16px}.text-18{font-size:18px}.text-20{font-size:20px}.text-22{font-size:22px}.text-24{font-size:24px}.text-26{font-size:26px}.leading-105{line-height:1.05em}.leading-110{line-height:1.1em}.leading-115{line-height:1.15em}.leading-120{line-height:1.2em}.leading-125{line-height:1.25em}.leading-130{line-height:1.3em}.leading-135{line-height:1.35em}.leading-140{line-height:1.4em}.leading-145{line-height:1.45em}.leading-150{line-height:1.5em}.leading-155{line-height:1.55em}.leading-160{line-height:1.6em}.leading-165{line-height:1.65em}.leading-170{line-height:1.7em}.leading-175{line-height:1.75em}.leading-180{line-height:1.8em}.leading-185{line-height:1.85em}.leading-190{line-height:1.9em}.leading-195{line-height:1.95em}.leading-200{line-height:2em}.tracking-50{letter-spacing:0.05em}.tracking-100{letter-spacing:0.1em}.tracking-150{letter-spacing:0.15em}.tracking-200{letter-spacing:0.2em}.origin-left{transform-origin:left}.origin-center{transform-origin:center}.origin-right{transform-origin:right}.origin-left-top{transform-origin:left top}.origin-center-top{transform-origin:center top}.origin-right-top{transform-origin:right top}.origin-left-center{transform-origin:left center}.origin-right-center{transform-origin:right center}.origin-left-bottom{transform-origin:left bottom}.origin-center-bottom{transform-origin:center bottom}.origin-right-bottom{transform-origin:right bottom}@media (max-width: 1200px){.tablet-extra\\:columns-1{grid-template-columns:repeat(1,1fr)}.tablet-extra\\:columns-2{grid-template-columns:repeat(2,1fr)}.tablet-extra\\:columns-3{grid-template-columns:repeat(3,1fr)}.tablet-extra\\:columns-4{grid-template-columns:repeat(4,1fr)}.tablet-extra\\:columns-5{grid-template-columns:repeat(5,1fr)}.tablet-extra\\:columns-6{grid-template-columns:repeat(6,1fr)}.tablet-extra\\:columns-7{grid-template-columns:repeat(7,1fr)}.tablet-extra\\:columns-8{grid-template-columns:repeat(8,1fr)}.tablet-extra\\:columns-9{grid-template-columns:repeat(9,1fr)}.tablet-extra\\:columns-10{grid-template-columns:repeat(10,1fr)}.tablet-extra\\:columns-11{grid-template-columns:repeat(11,1fr)}.tablet-extra\\:columns-12{grid-template-columns:repeat(12,1fr)}.tablet-extra\\:w-1\\/12{width:8.3333333333333%}.tablet-extra\\:w-1\\/5{width:8.3333333333333%}.tablet-extra\\:w-2\\/12{width:16.666666666667%}.tablet-extra\\:w-2\\/5{width:16.666666666667%}.tablet-extra\\:w-3\\/12{width:25%}.tablet-extra\\:w-3\\/5{width:25%}.tablet-extra\\:w-4\\/12{width:33.333333333333%}.tablet-extra\\:w-4\\/5{width:33.333333333333%}.tablet-extra\\:w-5\\/12{width:41.666666666667%}.tablet-extra\\:w-5\\/5{width:41.666666666667%}.tablet-extra\\:w-6\\/12{width:50%}.tablet-extra\\:w-7\\/12{width:58.333333333333%}.tablet-extra\\:w-8\\/12{width:66.666666666667%}.tablet-extra\\:w-9\\/12{width:75%}.tablet-extra\\:w-10\\/12{width:83.333333333333%}.tablet-extra\\:w-11\\/12{width:91.666666666667%}.tablet-extra\\:w-full{width:100%}}@media (max-width: 1024px){.tablet\\:columns-1{grid-template-columns:repeat(1,1fr)}.tablet\\:columns-2{grid-template-columns:repeat(2,1fr)}.tablet\\:columns-3{grid-template-columns:repeat(3,1fr)}.tablet\\:columns-4{grid-template-columns:repeat(4,1fr)}.tablet\\:columns-5{grid-template-columns:repeat(5,1fr)}.tablet\\:columns-6{grid-template-columns:repeat(6,1fr)}.tablet\\:columns-7{grid-template-columns:repeat(7,1fr)}.tablet\\:columns-8{grid-template-columns:repeat(8,1fr)}.tablet\\:columns-9{grid-template-columns:repeat(9,1fr)}.tablet\\:columns-10{grid-template-columns:repeat(10,1fr)}.tablet\\:columns-11{grid-template-columns:repeat(11,1fr)}.tablet\\:columns-12{grid-template-columns:repeat(12,1fr)}.tablet\\:w-1\\/12{width:8.3333333333333%}.tablet\\:w-1\\/5{width:8.3333333333333%}.tablet\\:w-2\\/12{width:16.666666666667%}.tablet\\:w-2\\/5{width:16.666666666667%}.tablet\\:w-3\\/12{width:25%}.tablet\\:w-3\\/5{width:25%}.tablet\\:w-4\\/12{width:33.333333333333%}.tablet\\:w-4\\/5{width:33.333333333333%}.tablet\\:w-5\\/12{width:41.666666666667%}.tablet\\:w-5\\/5{width:41.666666666667%}.tablet\\:w-6\\/12{width:50%}.tablet\\:w-7\\/12{width:58.333333333333%}.tablet\\:w-8\\/12{width:66.666666666667%}.tablet\\:w-9\\/12{width:75%}.tablet\\:w-10\\/12{width:83.333333333333%}.tablet\\:w-11\\/12{width:91.666666666667%}.tablet\\:w-full{width:100%}.tablet\\:mt-2{margin-top:2px}.tablet\\:me-2{margin-inline-end:2px}.tablet\\:mb-2{margin-bottom:2px}.tablet\\:ms-2{margin-inline-start:2px}.tablet\\:mt-4{margin-top:4px}.tablet\\:me-4{margin-inline-end:4px}.tablet\\:mb-4{margin-bottom:4px}.tablet\\:ms-4{margin-inline-start:4px}.tablet\\:mt-6{margin-top:6px}.tablet\\:me-6{margin-inline-end:6px}.tablet\\:mb-6{margin-bottom:6px}.tablet\\:ms-6{margin-inline-start:6px}.tablet\\:mt-8{margin-top:8px}.tablet\\:me-8{margin-inline-end:8px}.tablet\\:mb-8{margin-bottom:8px}.tablet\\:ms-8{margin-inline-start:8px}.tablet\\:mt-10{margin-top:10px}.tablet\\:me-10{margin-inline-end:10px}.tablet\\:mb-10{margin-bottom:10px}.tablet\\:ms-10{margin-inline-start:10px}.tablet\\:mt-12{margin-top:12px}.tablet\\:me-12{margin-inline-end:12px}.tablet\\:mb-12{margin-bottom:12px}.tablet\\:ms-12{margin-inline-start:12px}.tablet\\:mt-14{margin-top:14px}.tablet\\:me-14{margin-inline-end:14px}.tablet\\:mb-14{margin-bottom:14px}.tablet\\:ms-14{margin-inline-start:14px}.tablet\\:mt-16{margin-top:16px}.tablet\\:me-16{margin-inline-end:16px}.tablet\\:mb-16{margin-bottom:16px}.tablet\\:ms-16{margin-inline-start:16px}.tablet\\:mt-18{margin-top:18px}.tablet\\:me-18{margin-inline-end:18px}.tablet\\:mb-18{margin-bottom:18px}.tablet\\:ms-18{margin-inline-start:18px}.tablet\\:mt-20{margin-top:20px}.tablet\\:me-20{margin-inline-end:20px}.tablet\\:mb-20{margin-bottom:20px}.tablet\\:ms-20{margin-inline-start:20px}.tablet\\:mt-22{margin-top:22px}.tablet\\:me-22{margin-inline-end:22px}.tablet\\:mb-22{margin-bottom:22px}.tablet\\:ms-22{margin-inline-start:22px}.tablet\\:mt-24{margin-top:24px}.tablet\\:me-24{margin-inline-end:24px}.tablet\\:mb-24{margin-bottom:24px}.tablet\\:ms-24{margin-inline-start:24px}.tablet\\:mt-26{margin-top:26px}.tablet\\:me-26{margin-inline-end:26px}.tablet\\:mb-26{margin-bottom:26px}.tablet\\:ms-26{margin-inline-start:26px}.tablet\\:mt-28{margin-top:28px}.tablet\\:me-28{margin-inline-end:28px}.tablet\\:mb-28{margin-bottom:28px}.tablet\\:ms-28{margin-inline-start:28px}.tablet\\:mt-30{margin-top:30px}.tablet\\:me-30{margin-inline-end:30px}.tablet\\:mb-30{margin-bottom:30px}.tablet\\:ms-30{margin-inline-start:30px}.tablet\\:mt-32{margin-top:32px}.tablet\\:me-32{margin-inline-end:32px}.tablet\\:mb-32{margin-bottom:32px}.tablet\\:ms-32{margin-inline-start:32px}.tablet\\:mt-34{margin-top:34px}.tablet\\:me-34{margin-inline-end:34px}.tablet\\:mb-34{margin-bottom:34px}.tablet\\:ms-34{margin-inline-start:34px}.tablet\\:mt-36{margin-top:36px}.tablet\\:me-36{margin-inline-end:36px}.tablet\\:mb-36{margin-bottom:36px}.tablet\\:ms-36{margin-inline-start:36px}.tablet\\:mt-38{margin-top:38px}.tablet\\:me-38{margin-inline-end:38px}.tablet\\:mb-38{margin-bottom:38px}.tablet\\:ms-38{margin-inline-start:38px}.tablet\\:mt-40{margin-top:40px}.tablet\\:me-40{margin-inline-end:40px}.tablet\\:mb-40{margin-bottom:40px}.tablet\\:ms-40{margin-inline-start:40px}.tablet\\:mt-42{margin-top:42px}.tablet\\:me-42{margin-inline-end:42px}.tablet\\:mb-42{margin-bottom:42px}.tablet\\:ms-42{margin-inline-start:42px}.tablet\\:mt-44{margin-top:44px}.tablet\\:me-44{margin-inline-end:44px}.tablet\\:mb-44{margin-bottom:44px}.tablet\\:ms-44{margin-inline-start:44px}.tablet\\:mt-46{margin-top:46px}.tablet\\:me-46{margin-inline-end:46px}.tablet\\:mb-46{margin-bottom:46px}.tablet\\:ms-46{margin-inline-start:46px}.tablet\\:mt-48{margin-top:48px}.tablet\\:me-48{margin-inline-end:48px}.tablet\\:mb-48{margin-bottom:48px}.tablet\\:ms-48{margin-inline-start:48px}.tablet\\:mt-50{margin-top:50px}.tablet\\:me-50{margin-inline-end:50px}.tablet\\:mb-50{margin-bottom:50px}.tablet\\:ms-50{margin-inline-start:50px}.tablet\\:mt-52{margin-top:52px}.tablet\\:me-52{margin-inline-end:52px}.tablet\\:mb-52{margin-bottom:52px}.tablet\\:ms-52{margin-inline-start:52px}.tablet\\:mt-54{margin-top:54px}.tablet\\:me-54{margin-inline-end:54px}.tablet\\:mb-54{margin-bottom:54px}.tablet\\:ms-54{margin-inline-start:54px}.tablet\\:mt-56{margin-top:56px}.tablet\\:me-56{margin-inline-end:56px}.tablet\\:mb-56{margin-bottom:56px}.tablet\\:ms-56{margin-inline-start:56px}.tablet\\:mt-58{margin-top:58px}.tablet\\:me-58{margin-inline-end:58px}.tablet\\:mb-58{margin-bottom:58px}.tablet\\:ms-58{margin-inline-start:58px}.tablet\\:mt-60{margin-top:60px}.tablet\\:me-60{margin-inline-end:60px}.tablet\\:mb-60{margin-bottom:60px}.tablet\\:ms-60{margin-inline-start:60px}.tablet\\:mt-62{margin-top:62px}.tablet\\:me-62{margin-inline-end:62px}.tablet\\:mb-62{margin-bottom:62px}.tablet\\:ms-62{margin-inline-start:62px}.tablet\\:mt-64{margin-top:64px}.tablet\\:me-64{margin-inline-end:64px}.tablet\\:mb-64{margin-bottom:64px}.tablet\\:ms-64{margin-inline-start:64px}.tablet\\:mt-66{margin-top:66px}.tablet\\:me-66{margin-inline-end:66px}.tablet\\:mb-66{margin-bottom:66px}.tablet\\:ms-66{margin-inline-start:66px}.tablet\\:mt-68{margin-top:68px}.tablet\\:me-68{margin-inline-end:68px}.tablet\\:mb-68{margin-bottom:68px}.tablet\\:ms-68{margin-inline-start:68px}.tablet\\:mt-70{margin-top:70px}.tablet\\:me-70{margin-inline-end:70px}.tablet\\:mb-70{margin-bottom:70px}.tablet\\:ms-70{margin-inline-start:70px}.tablet\\:mt-72{margin-top:72px}.tablet\\:me-72{margin-inline-end:72px}.tablet\\:mb-72{margin-bottom:72px}.tablet\\:ms-72{margin-inline-start:72px}.tablet\\:.-order-3{order:-3}.tablet\\:.-order-2{order:-2}.tablet\\:.-order-1{order:-1}.tablet\\:.order-0{order:0}.tablet\\:.order-1{order:1}.tablet\\:.order-2{order:2}.tablet\\:.order-3{order:3}}@media (max-width: 880px){.mobile-extra\\:columns-1{grid-template-columns:repeat(1,1fr)}.mobile-extra\\:columns-2{grid-template-columns:repeat(2,1fr)}.mobile-extra\\:columns-3{grid-template-columns:repeat(3,1fr)}.mobile-extra\\:columns-4{grid-template-columns:repeat(4,1fr)}.mobile-extra\\:columns-5{grid-template-columns:repeat(5,1fr)}.mobile-extra\\:columns-6{grid-template-columns:repeat(6,1fr)}.mobile-extra\\:columns-7{grid-template-columns:repeat(7,1fr)}.mobile-extra\\:columns-8{grid-template-columns:repeat(8,1fr)}.mobile-extra\\:columns-9{grid-template-columns:repeat(9,1fr)}.mobile-extra\\:columns-10{grid-template-columns:repeat(10,1fr)}.mobile-extra\\:columns-11{grid-template-columns:repeat(11,1fr)}.mobile-extra\\:columns-12{grid-template-columns:repeat(12,1fr)}.mobile-extra\\:w-1\\/12{width:8.3333333333333%}.mobile-extra\\:w-1\\/5{width:8.3333333333333%}.mobile-extra\\:w-2\\/12{width:16.666666666667%}.mobile-extra\\:w-2\\/5{width:16.666666666667%}.mobile-extra\\:w-3\\/12{width:25%}.mobile-extra\\:w-3\\/5{width:25%}.mobile-extra\\:w-4\\/12{width:33.333333333333%}.mobile-extra\\:w-4\\/5{width:33.333333333333%}.mobile-extra\\:w-5\\/12{width:41.666666666667%}.mobile-extra\\:w-5\\/5{width:41.666666666667%}.mobile-extra\\:w-6\\/12{width:50%}.mobile-extra\\:w-7\\/12{width:58.333333333333%}.mobile-extra\\:w-8\\/12{width:66.666666666667%}.mobile-extra\\:w-9\\/12{width:75%}.mobile-extra\\:w-10\\/12{width:83.333333333333%}.mobile-extra\\:w-11\\/12{width:91.666666666667%}.mobile-extra\\:w-full{width:100%}}@media (max-width: 767px){.mobile\\:columns-1{grid-template-columns:repeat(1,1fr)}.mobile\\:columns-2{grid-template-columns:repeat(2,1fr)}.mobile\\:columns-3{grid-template-columns:repeat(3,1fr)}.mobile\\:columns-4{grid-template-columns:repeat(4,1fr)}.mobile\\:columns-5{grid-template-columns:repeat(5,1fr)}.mobile\\:columns-6{grid-template-columns:repeat(6,1fr)}.mobile\\:columns-7{grid-template-columns:repeat(7,1fr)}.mobile\\:columns-8{grid-template-columns:repeat(8,1fr)}.mobile\\:columns-9{grid-template-columns:repeat(9,1fr)}.mobile\\:columns-10{grid-template-columns:repeat(10,1fr)}.mobile\\:columns-11{grid-template-columns:repeat(11,1fr)}.mobile\\:columns-12{grid-template-columns:repeat(12,1fr)}.mobile\\:w-1\\/12{width:8.3333333333333%}.mobile\\:w-1\\/5{width:8.3333333333333%}.mobile\\:w-2\\/12{width:16.666666666667%}.mobile\\:w-2\\/5{width:16.666666666667%}.mobile\\:w-3\\/12{width:25%}.mobile\\:w-3\\/5{width:25%}.mobile\\:w-4\\/12{width:33.333333333333%}.mobile\\:w-4\\/5{width:33.333333333333%}.mobile\\:w-5\\/12{width:41.666666666667%}.mobile\\:w-5\\/5{width:41.666666666667%}.mobile\\:w-6\\/12{width:50%}.mobile\\:w-7\\/12{width:58.333333333333%}.mobile\\:w-8\\/12{width:66.666666666667%}.mobile\\:w-9\\/12{width:75%}.mobile\\:w-10\\/12{width:83.333333333333%}.mobile\\:w-11\\/12{width:91.666666666667%}.mobile\\:w-full{width:100%}.mobile\\:pt-2{padding-top:2px}.mobile\\:pe-2{padding-inline-end:2px}.mobile\\:pb-2{padding-bottom:2px}.mobile\\:ps-2{padding-inline-start:2px}.mobile\\:pt-4{padding-top:4px}.mobile\\:pe-4{padding-inline-end:4px}.mobile\\:pb-4{padding-bottom:4px}.mobile\\:ps-4{padding-inline-start:4px}.mobile\\:pt-6{padding-top:6px}.mobile\\:pe-6{padding-inline-end:6px}.mobile\\:pb-6{padding-bottom:6px}.mobile\\:ps-6{padding-inline-start:6px}.mobile\\:pt-8{padding-top:8px}.mobile\\:pe-8{padding-inline-end:8px}.mobile\\:pb-8{padding-bottom:8px}.mobile\\:ps-8{padding-inline-start:8px}.mobile\\:pt-10{padding-top:10px}.mobile\\:pe-10{padding-inline-end:10px}.mobile\\:pb-10{padding-bottom:10px}.mobile\\:ps-10{padding-inline-start:10px}.mobile\\:pt-12{padding-top:12px}.mobile\\:pe-12{padding-inline-end:12px}.mobile\\:pb-12{padding-bottom:12px}.mobile\\:ps-12{padding-inline-start:12px}.mobile\\:pt-14{padding-top:14px}.mobile\\:pe-14{padding-inline-end:14px}.mobile\\:pb-14{padding-bottom:14px}.mobile\\:ps-14{padding-inline-start:14px}.mobile\\:pt-16{padding-top:16px}.mobile\\:pe-16{padding-inline-end:16px}.mobile\\:pb-16{padding-bottom:16px}.mobile\\:ps-16{padding-inline-start:16px}.mobile\\:pt-18{padding-top:18px}.mobile\\:pe-18{padding-inline-end:18px}.mobile\\:pb-18{padding-bottom:18px}.mobile\\:ps-18{padding-inline-start:18px}.mobile\\:pt-20{padding-top:20px}.mobile\\:pe-20{padding-inline-end:20px}.mobile\\:pb-20{padding-bottom:20px}.mobile\\:ps-20{padding-inline-start:20px}.mobile\\:pt-22{padding-top:22px}.mobile\\:pe-22{padding-inline-end:22px}.mobile\\:pb-22{padding-bottom:22px}.mobile\\:ps-22{padding-inline-start:22px}.mobile\\:pt-24{padding-top:24px}.mobile\\:pe-24{padding-inline-end:24px}.mobile\\:pb-24{padding-bottom:24px}.mobile\\:ps-24{padding-inline-start:24px}.mobile\\:pt-26{padding-top:26px}.mobile\\:pe-26{padding-inline-end:26px}.mobile\\:pb-26{padding-bottom:26px}.mobile\\:ps-26{padding-inline-start:26px}.mobile\\:pt-28{padding-top:28px}.mobile\\:pe-28{padding-inline-end:28px}.mobile\\:pb-28{padding-bottom:28px}.mobile\\:ps-28{padding-inline-start:28px}.mobile\\:pt-30{padding-top:30px}.mobile\\:pe-30{padding-inline-end:30px}.mobile\\:pb-30{padding-bottom:30px}.mobile\\:ps-30{padding-inline-start:30px}.mobile\\:pt-32{padding-top:32px}.mobile\\:pe-32{padding-inline-end:32px}.mobile\\:pb-32{padding-bottom:32px}.mobile\\:ps-32{padding-inline-start:32px}.mobile\\:pt-34{padding-top:34px}.mobile\\:pe-34{padding-inline-end:34px}.mobile\\:pb-34{padding-bottom:34px}.mobile\\:ps-34{padding-inline-start:34px}.mobile\\:pt-36{padding-top:36px}.mobile\\:pe-36{padding-inline-end:36px}.mobile\\:pb-36{padding-bottom:36px}.mobile\\:ps-36{padding-inline-start:36px}.mobile\\:pt-38{padding-top:38px}.mobile\\:pe-38{padding-inline-end:38px}.mobile\\:pb-38{padding-bottom:38px}.mobile\\:ps-38{padding-inline-start:38px}.mobile\\:pt-40{padding-top:40px}.mobile\\:pe-40{padding-inline-end:40px}.mobile\\:pb-40{padding-bottom:40px}.mobile\\:ps-40{padding-inline-start:40px}.mobile\\:pt-42{padding-top:42px}.mobile\\:pe-42{padding-inline-end:42px}.mobile\\:pb-42{padding-bottom:42px}.mobile\\:ps-42{padding-inline-start:42px}.mobile\\:pt-44{padding-top:44px}.mobile\\:pe-44{padding-inline-end:44px}.mobile\\:pb-44{padding-bottom:44px}.mobile\\:ps-44{padding-inline-start:44px}.mobile\\:pt-46{padding-top:46px}.mobile\\:pe-46{padding-inline-end:46px}.mobile\\:pb-46{padding-bottom:46px}.mobile\\:ps-46{padding-inline-start:46px}.mobile\\:pt-48{padding-top:48px}.mobile\\:pe-48{padding-inline-end:48px}.mobile\\:pb-48{padding-bottom:48px}.mobile\\:ps-48{padding-inline-start:48px}.mobile\\:pt-50{padding-top:50px}.mobile\\:pe-50{padding-inline-end:50px}.mobile\\:pb-50{padding-bottom:50px}.mobile\\:ps-50{padding-inline-start:50px}.mobile\\:pt-52{padding-top:52px}.mobile\\:pe-52{padding-inline-end:52px}.mobile\\:pb-52{padding-bottom:52px}.mobile\\:ps-52{padding-inline-start:52px}.mobile\\:pt-54{padding-top:54px}.mobile\\:pe-54{padding-inline-end:54px}.mobile\\:pb-54{padding-bottom:54px}.mobile\\:ps-54{padding-inline-start:54px}.mobile\\:pt-56{padding-top:56px}.mobile\\:pe-56{padding-inline-end:56px}.mobile\\:pb-56{padding-bottom:56px}.mobile\\:ps-56{padding-inline-start:56px}.mobile\\:pt-58{padding-top:58px}.mobile\\:pe-58{padding-inline-end:58px}.mobile\\:pb-58{padding-bottom:58px}.mobile\\:ps-58{padding-inline-start:58px}.mobile\\:pt-60{padding-top:60px}.mobile\\:pe-60{padding-inline-end:60px}.mobile\\:pb-60{padding-bottom:60px}.mobile\\:ps-60{padding-inline-start:60px}.mobile\\:pt-62{padding-top:62px}.mobile\\:pe-62{padding-inline-end:62px}.mobile\\:pb-62{padding-bottom:62px}.mobile\\:ps-62{padding-inline-start:62px}.mobile\\:pt-64{padding-top:64px}.mobile\\:pe-64{padding-inline-end:64px}.mobile\\:pb-64{padding-bottom:64px}.mobile\\:ps-64{padding-inline-start:64px}.mobile\\:pt-66{padding-top:66px}.mobile\\:pe-66{padding-inline-end:66px}.mobile\\:pb-66{padding-bottom:66px}.mobile\\:ps-66{padding-inline-start:66px}.mobile\\:pt-68{padding-top:68px}.mobile\\:pe-68{padding-inline-end:68px}.mobile\\:pb-68{padding-bottom:68px}.mobile\\:ps-68{padding-inline-start:68px}.mobile\\:pt-70{padding-top:70px}.mobile\\:pe-70{padding-inline-end:70px}.mobile\\:pb-70{padding-bottom:70px}.mobile\\:ps-70{padding-inline-start:70px}.mobile\\:pt-72{padding-top:72px}.mobile\\:pe-72{padding-inline-end:72px}.mobile\\:pb-72{padding-bottom:72px}.mobile\\:ps-72{padding-inline-start:72px}.mobile\\:.-order-3{order:-3}.mobile\\:.-order-2{order:-2}.mobile\\:.-order-1{order:-1}.mobile\\:.order-0{order:0}.mobile\\:.order-1{order:1}.mobile\\:.order-2{order:2}.mobile\\:.order-3{order:3}}', 'yes'),
(566, 'woocommerce_refund_returns_page_created', '13', 'no'),
(567, 'woocommerce_refund_returns_page_id', '13', 'yes'),
(570, 'woocommerce_paypal_settings', 'a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:24:\"mani.prognamik@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:24:\"mani.prognamik@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(571, 'woocommerce_version', '8.9.3', 'yes'),
(572, 'woocommerce_db_version', '8.9.3', 'yes'),
(573, 'woocommerce_store_id', '26d85831-a2b0-46ee-aca5-fe0d49e5d036', 'yes'),
(574, 'woocommerce_admin_install_timestamp', '1718181307', 'yes'),
(575, 'woocommerce_inbox_variant_assignment', '6', 'yes'),
(576, 'woocommerce_remote_variant_assignment', '116', 'yes'),
(579, '_transient_woocommerce_activated_plugin', 'woocommerce/woocommerce.php', 'yes'),
(580, 'action_scheduler_lock_async-request-runner', '66695dbbd99723.44164460|1718181367', 'no'),
(581, 'woocommerce_admin_notices', 'a:1:{i:0;s:14:\"template_files\";}', 'yes'),
(582, 'elementor_css_print_method', 'internal', 'yes'),
(583, 'elementor_disable_color_schemes', 'yes', 'yes'),
(584, 'elementor_disable_typography_schemes', 'yes', 'yes'),
(585, 'elementor_experiment-e_dom_optimization', 'active', 'yes'),
(586, 'elementor_experiment-container', 'active', 'yes'),
(587, 'elementor_cpt_support', 'a:10:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:14:\"e-landing-page\";i:3;s:13:\"liquid-header\";i:4;s:13:\"liquid-footer\";i:5;s:16:\"liquid-mega-menu\";i:6;s:20:\"liquid-title-wrapper\";i:7;s:16:\"liquid-portfolio\";i:8;s:15:\"liquid-archives\";i:9;s:12:\"metform-form\";}', 'yes'),
(588, 'metform__stories_last_check', '1746164281', 'yes'),
(589, 'metform__stories_data', 'O:8:\"stdClass\":10:{s:8:\"10015497\";O:8:\"stdClass\":9:{s:2:\"id\";i:10015497;s:5:\"title\";s:26:\"GetGenie Ramadan Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:2:{i:0;s:8:\"getgenie\";i:1;s:12:\"getgenie-pro\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1741219200;s:3:\"end\";i:1742688000;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:32:\"https://getgenie.ai/SRamadan25/ \";s:11:\"story_image\";s:74:\"https://api.wpmet.com/auth/wp-content/uploads/2024/03/getgenie_story-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10015490\";O:8:\"stdClass\":9:{s:2:\"id\";i:10015490;s:5:\"title\";s:23:\"Wpmet Ramadan Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:7:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:10:\"shopengine\";i:5;s:9:\"wp-social\";i:6;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1741219200;s:3:\"end\";i:1742688000;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:30:\"https://wpmet.com/SRamadan25/ \";s:11:\"story_image\";s:71:\"https://api.wpmet.com/auth/wp-content/uploads/2024/03/wpmet_story-2.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10014894\";O:8:\"stdClass\":9:{s:2:\"id\";i:10014894;s:5:\"title\";s:21:\"Genie Flash Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:2:{i:0;s:8:\"getgenie\";i:1;s:12:\"getgenie-pro\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1739232000;s:3:\"end\";i:1740268800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:24:\"www.getgenie.ai/Sflash25\";s:11:\"story_image\";s:68:\"https://api.wpmet.com/auth/wp-content/uploads/2025/02/getgenie-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10014892\";O:8:\"stdClass\":9:{s:2:\"id\";i:10014892;s:5:\"title\";s:21:\"Wpmet Flash Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:7:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:10:\"shopengine\";i:5;s:9:\"wp-social\";i:6;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1739232000;s:3:\"end\";i:1740268800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:22:\"www.wpmet.com/Sflash25\";s:11:\"story_image\";s:65:\"https://api.wpmet.com/auth/wp-content/uploads/2025/02/wpmet-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10013002\";O:8:\"stdClass\":9:{s:2:\"id\";i:10013002;s:5:\"title\";s:18:\"Genie Holiday 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:2:{i:0;s:8:\"getgenie\";i:1;s:12:\"getgenie-pro\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1734825600;s:3:\"end\";i:1737244800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:23:\"www.getgenie.ai/NYstory\";s:11:\"story_image\";s:67:\"https://api.wpmet.com/auth/wp-content/uploads/2024/12/genie-gif.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10013000\";O:8:\"stdClass\":9:{s:2:\"id\";i:10013000;s:5:\"title\";s:23:\"Wpmet Holiday Sale 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:7:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:10:\"shopengine\";i:5;s:9:\"wp-social\";i:6;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1734825600;s:3:\"end\";i:1737244800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:25:\"https://wpmet.com/NYstory\";s:11:\"story_image\";s:63:\"https://api.wpmet.com/auth/wp-content/uploads/2024/12/story.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10012291\";O:8:\"stdClass\":9:{s:2:\"id\";i:10012291;s:5:\"title\";s:18:\"GetGenie BFCM 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1732492800;s:3:\"end\";i:1733616000;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:19:\"getgenie.ai/bfcmS24\";s:11:\"story_image\";s:74:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/InPlugin-Story-9.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10012290\";O:8:\"stdClass\":9:{s:2:\"id\";i:10012290;s:5:\"title\";s:15:\"Wpmet BFCM 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:6:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:9:\"wp-social\";i:5;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1732492800;s:3:\"end\";i:1734480000;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:17:\"wpmet.com/bfcmS24\";s:11:\"story_image\";s:69:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/wpmet_story.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011351\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011351;s:5:\"title\";s:28:\"GetGenie Halloween Sale 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1729382400;s:3:\"end\";i:1731196800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:31:\"https://getgenie.ai/halloween24\";s:11:\"story_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2024/10/getgenie.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011349\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011349;s:5:\"title\";s:25:\"Wpmet Halloween Sale 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:7:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:10:\"shopengine\";i:5;s:9:\"wp-social\";i:6;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1729382400;s:3:\"end\";i:1731196800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:29:\"https://wpmet.com/halloween24\";s:11:\"story_image\";s:63:\"https://api.wpmet.com/auth/wp-content/uploads/2024/10/wpmet.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}', 'yes'),
(590, 'metform_install_date', '2024-06-12 08:35:40', 'yes'),
(599, 'metform_last_entry_serial_no', '16', 'yes'),
(603, 'elementor_log', 'a:42:{s:32:\"c1edf65f6ddd2dbe326cd7dad88069ed\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 21:05:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 21:05:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"e40e7596051c7ad9d7b08bb915bce7d4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 21:05:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 21:05:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"6175f7592bb425e6a12f3917c4d3f027\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 21:05:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 21:05:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"2a8d4a41544c8ef9d2186a702b6694f7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 21:05:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 21:05:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6b77d9db8672607ad9a063ad5b5fc6df\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 21:05:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 21:05:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b96178f0acb02150623f6350d3529e55\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-18 20:50:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-18 20:50:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"3c0b5db9703caefe5f2b2d4a11b1bad9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-18 20:50:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-18 20:50:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"aa5bf193dcdcb227664f7b07f1084c41\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-18 20:50:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-18 20:50:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"129f146328743b0bc37c9d08fa6a4dbd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-18 20:50:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-18 20:50:36\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"0b2efbf2187a6379ecc67cc0db69db5c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-18 20:50:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-18 20:50:36\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"95df485171cdc0b27a1ef75b638f935b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2025-03-03 06:02:55\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:77:\"Undefined array key "lqd_page_title_wrapper_bg_overlay_size_laptop"\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-03 06:02:55\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:67:\"Undefined array key \"lqd_page_title_wrapper_bg_overlay_size_laptop\"\";s:4:\"file\";s:92:\"/home/k0me220wkg03/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1487;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:92:\"/home/k0me220wkg03/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:1487;}s:32:\"2c09101e8123dc26b07f10fa65702d86\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 20:58:22\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 20:58:22\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"1117474a9db60bf619177511f49f2e54\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 20:58:22\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 20:58:22\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"f1f79c6e84b5876ca32fc9b086cd2e79\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 20:58:22\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 20:58:22\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"8025a99bbc38cea47fcea8a3facfe0a8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 20:58:22\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 20:58:22\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"64b87736f22fe0ff4a68b1bfbc2db81e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 20:58:22\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 20:58:22\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"4e84a6d6f6f14e1dd43ab975bc4d15a1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-17 21:04:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-17 21:04:26\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"ed34d48975338ea0785800a05509d8bf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-17 21:04:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-17 21:04:26\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"e4b4204a7929991b26366ea7199f0a14\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-17 21:04:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-17 21:04:26\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"130f31edfd01b488b648622a134a7bc5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-17 21:04:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.7\";s:2:\"to\";s:6:\"3.28.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-17 21:04:26\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.7\";s:2:\"to\";s:6:\"3.28.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"92fef320796623a9843f5239f221179f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-17 21:04:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.7\";s:2:\"to\";s:6:\"3.28.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-17 21:04:26\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.7\";s:2:\"to\";s:6:\"3.28.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"98fbc4955c65c46bc1ca2c9451e0c865\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-23 20:54:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-23 20:54:25\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"570ca4d3374297fc02865bf0ab2c6ab3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-23 20:54:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-23 20:54:25\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"4b72345b6b3317caea04b05ca07417cf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-23 20:54:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-23 20:54:25\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4fe68080d3c6b6e0dfdf435036131ea7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-23 20:54:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.0\";s:2:\"to\";s:6:\"3.28.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-23 20:54:25\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.0\";s:2:\"to\";s:6:\"3.28.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ad1850d1de778b9304fce63322f91e24\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-23 20:54:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.0\";s:2:\"to\";s:6:\"3.28.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-23 20:54:25\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.0\";s:2:\"to\";s:6:\"3.28.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"25984a63a08d304981ffdf47a100e256\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-30 20:52:35\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-30 20:52:35\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"eb03b2ca3a7caa8e1495ee3790ecc386\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-30 20:52:35\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-30 20:52:35\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"eb061d069d0eee0afad2542add3851ba\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-30 20:52:35\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-30 20:52:35\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"1a5146b271b7f99fd35641857cac20ce\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-30 20:52:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.1\";s:2:\"to\";s:6:\"3.28.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-30 20:52:36\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.1\";s:2:\"to\";s:6:\"3.28.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"423fd9526650866c53c662faf0f822dd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-30 20:52:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.1\";s:2:\"to\";s:6:\"3.28.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-30 20:52:36\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.1\";s:2:\"to\";s:6:\"3.28.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b706d1b4d6d53028eab21f697a0d61dd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-01 20:49:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-01 20:49:50\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"beac9b8e55bfdc8461092bcb601f7df9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-01 20:49:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-01 20:49:50\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"47e90c1de6c4b8541403fb76bbbf4e7f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-01 20:49:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-01 20:49:50\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"7918beb98404fc382dd4e3037c382f07\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-01 20:49:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.2\";s:2:\"to\";s:6:\"3.28.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-01 20:49:50\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.2\";s:2:\"to\";s:6:\"3.28.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3392de387866502d5d9633d535d78526\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-01 20:49:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.2\";s:2:\"to\";s:6:\"3.28.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-01 20:49:50\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.2\";s:2:\"to\";s:6:\"3.28.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b848404afe895df2748856605c5c6438\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-22 20:50:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-22 20:50:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"08897591673b85e5d83a4dda7909e064\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-22 20:50:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.3\";s:2:\"to\";s:6:\"3.28.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-22 20:50:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.3\";s:2:\"to\";s:6:\"3.28.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"33bd9aa04dbf03e62d27853c0cd3ec53\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-22 20:50:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-22 20:50:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"07c075e07a8cf767ecbfabc7e7959d3c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-22 20:50:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-22 20:50:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"1b2d0d354279f8af4964701b7d1cd6f2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-04-22 20:50:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.3\";s:2:\"to\";s:6:\"3.28.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-04-22 20:50:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.28.3\";s:2:\"to\";s:6:\"3.28.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"2ce3d91a0c4a21c00b82470678cfaac1\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2025-04-22 20:52:06\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:72:\"Undefined array key "lqd_title_wrapper_bg_overlay_size_laptop"\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2025-04-22 20:52:06\";i:1;s:19:\"2025-04-22 21:08:55\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:62:\"Undefined array key \"lqd_title_wrapper_bg_overlay_size_laptop\"\";s:4:\"file\";s:92:\"/home/k0me220wkg03/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1492;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:92:\"/home/k0me220wkg03/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:1492;}}', 'off'),
(605, 'category_children', 'a:0:{}', 'yes'),
(606, 'merlin_logisticshub_completed', '1718181467', 'yes'),
(607, 'lqd_el_container_bg', 'a:0:{}', 'yes'),
(608, 'liquid_typekit_css', 'not found', 'yes'),
(610, 'liquid_scripts_cache', 'a:0:{}', 'yes'),
(615, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1744889627;s:5:\"value\";s:12896:\"[{\"id\":\"hello-biz-contact\",\"title\":\"New Contact Widget, Visual Layout Presets & more\",\"description\":\"Hello Biz just got an update! Explore the new Contact Widget, Visual Layout Presets, Form Submissions integration, and fresh new kits.\",\"topic\":\"Hello Biz\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/hello-biz-contact.png\",\"chipTags\":[\"New Features\"],\"link\":\"https:\\/\\/go.elementor.com\\/hello-biz-updates\",\"readMoreText\":\"Learn More\"},{\"id\":\"ai-site-planner-colors\",\"title\":\"Style Your Wireframe, Speed Up Your Store Build\",\"description\":\"Site Planner now lets you style your wireframe with fonts and colors - instantly visualizing your site\\u2019s look and feel. Plus, it predesigns pages for WooCommerce like Cart and Checkout, so you can dive straight into customizations\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/site-planner-colors.png\",\"chipTags\":[\"New Feature\"],\"link\":\"http:\\/\\/www.elementor.com\\/ai-site-planner\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-notification\",\"title\":\"Just released! Ally - a new plugin for web accessibility & usability\",\"description\":\"Ally simplifies the complexities of making your website more accessible. With new regulations here and coming, making your website more usable and inclusive is no longer just an option, but a must.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-notification.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get it free\",\"ctaLink\":\"https:\\/\\/wordpress.org\\/plugins\\/pojo-accessibility\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"send-notification\",\"title\":\"Grow your business with Send: an intuitive platform for Email & SMS, natively built for WooCommerce.\",\"description\":\"Deliver powerful, automated email & SMS campaigns with Send\\u2014built for WooCommerce to help you boost conversions, drive growth, and go beyond just building websites.\",\"topic\":\"Send by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/send-notification.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Explore Send\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/AHSfdh\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"send-app\\/send-app.php\"}]]},{\"id\":\"ai-site-planner\",\"title\":\"Instant Sitemaps & Wireframes\",\"description\":\"Get your website plan in minutes with AI Site Planner. Describe your desired site and AI will generate a sitemap, brief and wireframe populated with initial content, ready for you to customize.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aI-site-planner.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-site-planner\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"grid-span-3.27\",\"title\":\"Design Grid layouts that fit your exact vision\",\"description\":\"Advanced column and row span controls give you the power to design Grid Container layouts that fit your exact vision.\",\"topic\":\"Elementor 3.27\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/grid-span-3.27.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-grid-span-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"local-fonts-3.27\",\"title\":\"Load Google Fonts safer and faster\",\"description\":\"Once enabled, Google Fonts are served directly from your server, streamlining the loading process and enhancing security.\",\"topic\":\"Elementor 3.27\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/local-google-fonts-3.27.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-local-fonts-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"video-shorts-3.27\",\"title\":\"Showcase short-form, vertical videos\",\"description\":\"The Video widget now supports YouTube Shorts in a vertical 9:16 ratio, the go-to format for engaging audiences.\",\"topic\":\"Elementor 3.27\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/video-shorts-3.27.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-video-shorts-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"dynamic-off-canvas-3.26\",\"title\":\"Dynamic Off-Canvas for Loop Grids\",\"description\":\"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.\",\"topic\":\"Elementor Pro 3.26\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"dynamic-off-canvas-3.26\",\"title\":\"Dynamic Off-Canvas for Loop Grids\",\"description\":\"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.\",\"topic\":\"Elementor Pro 3.26\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-loop-off-canvas\\/\"},{\"id\":\"css-loading-3.25\",\"title\":\"Boost Performance with Conditional CSS Loading\",\"description\":\"Boost performance by conditionally loading only the styles that each page needs, reducing the page CSS size by up to 668kb.\",\"topic\":\"Elementor 3.25\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.25-css-Loading.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-25-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website. Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"variable-fonts-3.24\",\"title\":\"Elevate text design with Variable Fonts\",\"description\":\"Experience unparalleled fluidity in your design with precise control over text width and weight.\",\"topic\":\"Elementor Pro 3.24\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-variable-fonts.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"variable-fonts-3.24\",\"title\":\"Elevate text design with Variable Fonts\",\"description\":\"Experience unparalleled fluidity in your design with precise control over text width and weight.\",\"topic\":\"Elementor Pro 3.24\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-variable-fonts.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-24-variable-fonts\\/\"},{\"id\":\"floating-bars-3.24\",\"title\":\"Increase conversion with Floating Bars\",\"description\":\"Place your most important messages and promotions at the top or bottom of your page seamlessly with over 30 pre-made templates.\",\"topic\":\"Elementor 3.24\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-floating-bar.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ai-featured-image\",\"title\":\"Featured Image: Let AI Do the Work\",\"description\":\"Say goodbye to image searches! Let AI craft stunning featured images with a click, perfectly matching your content. No prompts needed. Discover how easy it is.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/featured_ai.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"introduction_meta\",\"meta\":\"ai_get_started\"}]],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image\\/\"},{\"id\":\"ai-featured-image\",\"title\":\"Featured Image: Let AI Do the Work\",\"description\":\"Say goodbye to image searches! Let AI craft stunning featured images with a click, perfectly matching your content. No prompts needed. Discover how easy it is.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/featured_ai.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Start Free Trial\",\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image-blog\\/\",\"readMoreText\":\"Learn More\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image\\/\\/\"},{\"id\":\"search-widget-3.23\",\"title\":\"Increases site exploration with AJAX loading & live results\",\"description\":\"Enabling faster, more accurate content discovery and helping visitors find what they\'re looking for.\",\"topic\":\"Elementor Pro 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"search-widget-3.23\",\"title\":\"Increases site exploration with AJAX loading & live results\",\"description\":\"Enabling faster, more accurate content discovery and helping visitors find what they\'re looking for.\",\"topic\":\"Elementor Pro 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-search-widget\\/\"},{\"id\":\"floating-buttons-3.23\",\"title\":\"Get more leads with Floating Buttons\",\"description\":\"Empowering you to increase conversion by seamlessly integrating a direct link to a chat or different platforms in the form of a floating button.\",\"topic\":\"Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/floating-buttons-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"link-in-bio-3.23\",\"title\":\"New Link in Bio Widgets for any Purpose\",\"description\":\"Create a polished and professional page with just a few clicks and effectively showcase all your important links. Choose from 7 unique widgets and over 60 templates!\",\"topic\":\"Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/link-in-bio-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-link-in-bio-3-23-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"nested-elements-3.23\",\"title\":\"Work faster on Nested Elements\",\"description\":\"Customize Nested Elements faster with version 3.23. Now every change to a Nested Element will only affect the relevant element and not require reloading the entire widget, improving Editor interaction time by 60%-98%.\",\"topic\":\"Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/nested-elements-3.23.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}', 'off'),
(623, 'liquid_widget_asset_css', 'a:0:{}', 'yes'),
(849, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:0:{}', 'no'),
(976, 'new_admin_email', 'mani.prognamik@gmail.com', 'yes'),
(1020, 'site_logo', '1922', 'yes'),
(1032, 'liquid-portfolio-category_children', 'a:0:{}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1112, '_elementor_home_screen_data', 'a:2:{s:7:\"timeout\";i:1718871380;s:5:\"value\";s:8404:\"{\"top\":{\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=le72grP_Q6k&t=1s\",\"youtube_embed_id\":\"le72grP_Q6k?si=g2akyWNODL6usu6u\"},\"top_with_licences\":[{\"license\":[\"free\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Start building your website with Elementor\'s no code drag & drop editor.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=le72grP_Q6k&t=1s\",\"youtube_embed_id\":\"le72grP_Q6k?si=g2akyWNODL6usu6u\"},{\"license\":[\"pro\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"}],\"get_started\":[{\"license\":[\"free\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\",\"title_small_color\":\"text.tertiary\"}]},{\"license\":[\"pro\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]}],\"add_ons\":{\"header\":{\"title\":\"Expand your design toolkit\",\"description\":\"These plugins, add-ons, and tools, have been selected to streamline your workflow and maximize your creativity.\"},\"repeater\":[{\"file_path\":\"image-optimization\\/image-optimization.php\",\"title\":\"Image Optimizer\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-io\\/\",\"description\":\"Check out this incredibly useful plugin that will compress and optimize your images, giving you leaner, faster websites.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/image-optimizer.svg\",\"type\":\"wporg\"},{\"title\":\"Elementor AI\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-ai\\/\",\"description\":\"Boost creativity with Elementor AI. Craft & enhance copy, create custom CSS & Code, and generate images to elevate your website.\",\"button_label\":\"Let\'s go\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/elementor.svg\",\"type\":\"link\",\"condition\":{\"key\":\"introduction_meta\",\"value\":\"ai_get_started\"}}],\"footer\":{\"label\":\"Explore more add-ons\",\"file_path\":\"wp-admin\\/admin.php?page=elementor-apps\"}},\"sidebar_upgrade\":[{\"license\":[\"free\"],\"show\":\"true\",\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\\u2019s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]},{\"license\":[\"pro\"],\"show\":\"false\",\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\\u2019s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}],\"external_links\":[{\"label\":\"Help Center\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-question-mark.svg\",\"url\":\"https:\\/\\/elementor.com\\/help\\/\"},{\"label\":\"Youtube\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-youtube.svg\",\"url\":\"https:\\/\\/www.youtube.com\\/@Elementor\"},{\"label\":\"Facebook Community\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-community.svg\",\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/Elementors\"},{\"label\":\"Blog\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-academic-hat.svg\",\"url\":\"https:\\/\\/elementor.com\\/blog\\/\"}]}\";}', 'no'),
(1267, '_transient_health-check-site-status-result', '{\"good\":17,\"recommended\":4,\"critical\":2}', 'yes'),
(1356, 'duplicate_page_options', 'a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1687, 'hub_templates_library', 'a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:29:{i:0;s:9:\"Accordion\";i:1;s:4:\"Blog\";i:2;s:14:\"Call To Action\";i:3;s:8:\"Carousel\";i:4;s:7:\"Clients\";i:5;s:7:\"Contact\";i:6;s:7:\"Content\";i:7;s:7:\"Counter\";i:8;s:9:\"Expansion\";i:9;s:15:\"Feature Section\";i:10;s:6:\"Footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"Header\";i:13;s:4:\"Hero\";i:14;s:5:\"Icons\";i:15;s:13:\"Image Section\";i:16;s:4:\"Maps\";i:17;s:7:\"Marquee\";i:18;s:5:\"Modal\";i:19;s:9:\"Portfolio\";i:20;s:13:\"Pricing Table\";i:21;s:7:\"Sidebar\";i:22;s:9:\"Slideshow\";i:23;s:13:\"Stack Section\";i:24;s:5:\"Steps\";i:25;s:4:\"Tabs\";i:26;s:4:\"Team\";i:27;s:12:\"Testimonials\";i:28;s:13:\"Title Wrapper\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:0:{}}}s:10:\"categories\";a:29:{i:0;s:9:\"Accordion\";i:1;s:4:\"Blog\";i:2;s:14:\"Call To Action\";i:3;s:8:\"Carousel\";i:4;s:7:\"Clients\";i:5;s:7:\"Contact\";i:6;s:7:\"Content\";i:7;s:7:\"Counter\";i:8;s:9:\"Expansion\";i:9;s:15:\"Feature Section\";i:10;s:6:\"Footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"Header\";i:13;s:4:\"Hero\";i:14;s:5:\"Icons\";i:15;s:13:\"Image Section\";i:16;s:4:\"Maps\";i:17;s:7:\"Marquee\";i:18;s:5:\"Modal\";i:19;s:9:\"Portfolio\";i:20;s:13:\"Pricing Table\";i:21;s:7:\"Sidebar\";i:22;s:9:\"Slideshow\";i:23;s:13:\"Stack Section\";i:24;s:5:\"Steps\";i:25;s:4:\"Tabs\";i:26;s:4:\"Team\";i:27;s:12:\"Testimonials\";i:28;s:13:\"Title Wrapper\";}s:9:\"templates\";a:169:{i:0;a:14:{s:2:\"id\";i:2880;s:5:\"title\";s:16:\"Fleet - About Us\";s:9:\"thumbnail\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/fleet-about.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:906;s:12:\"tmpl_created\";s:19:\"2024-02-19 15:13:12\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=fleet-about-us-2\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:1;a:14:{s:2:\"id\";i:2876;s:5:\"title\";s:16:\"Fleet - Services\";s:9:\"thumbnail\";s:102:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/fleet-services.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1233;s:12:\"tmpl_created\";s:19:\"2024-02-19 15:09:35\";s:3:\"url\";s:90:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=fleet-services\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:2;a:14:{s:2:\"id\";i:2873;s:5:\"title\";s:7:\"Maps 07\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/maps-07.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:286;s:12:\"tmpl_created\";s:19:\"2024-02-19 15:06:24\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=maps-07\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Maps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:3;a:14:{s:2:\"id\";i:2865;s:5:\"title\";s:10:\"Contact 05\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/contact-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:280;s:12:\"tmpl_created\";s:19:\"2024-02-19 15:04:33\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=contact-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:4;a:14:{s:2:\"id\";i:2857;s:5:\"title\";s:15:\"Fleet - Contact\";s:9:\"thumbnail\";s:101:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/fleet-contact.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:566;s:12:\"tmpl_created\";s:19:\"2024-02-19 14:56:36\";s:3:\"url\";s:89:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=fleet-contact\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:5;a:14:{s:2:\"id\";i:2853;s:5:\"title\";s:16:\"Title Wrapper 07\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/title-wrapper-07.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:280;s:12:\"tmpl_created\";s:19:\"2024-02-19 14:42:29\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=title-wrapper-07\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Title Wrapper\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:6;a:14:{s:2:\"id\";i:2842;s:5:\"title\";s:7:\"Hero 08\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/hero-08.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-02-19 14:35:38\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=hero-08\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:23:\"Required: E14, E15, E16\";}i:7;a:14:{s:2:\"id\";i:2831;s:5:\"title\";s:13:\"E16 - Hero 08\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/hero-08.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-02-19 14:30:33\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e16-hero-08\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E16\";}i:8;a:14:{s:2:\"id\";i:2824;s:5:\"title\";s:13:\"E15 - Hero 08\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/hero-08.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-02-19 14:28:40\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e15-hero-08\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E15\";}i:9;a:14:{s:2:\"id\";i:2819;s:5:\"title\";s:13:\"E14 - Hero 08\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/hero-08.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-02-19 14:25:59\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e14-hero-08\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E14\";}i:10;a:14:{s:2:\"id\";i:2806;s:5:\"title\";s:16:\"Fleet - Home Alt\";s:9:\"thumbnail\";s:102:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/fleet-home-alt.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:3237;s:12:\"tmpl_created\";s:19:\"2024-02-19 14:20:53\";s:3:\"url\";s:90:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=fleet-home-alt\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:27:\"Required Blocks: E14 to E16\";}i:11;a:14:{s:2:\"id\";i:2803;s:5:\"title\";s:9:\"Footer 07\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/footer-07.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:161;s:12:\"tmpl_created\";s:19:\"2024-02-19 14:09:43\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=footer-07\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Footer\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:12;a:14:{s:2:\"id\";i:2798;s:5:\"title\";s:9:\"Header 07\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/header-07.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-02-19 14:01:03\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=header-07\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Header\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:13;a:14:{s:2:\"id\";i:2795;s:5:\"title\";s:7:\"Blog 04\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/blog-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:540;s:12:\"tmpl_created\";s:19:\"2024-02-19 13:56:53\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=blog-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Blog\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:14;a:14:{s:2:\"id\";i:2792;s:5:\"title\";s:18:\"Feature Section 12\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/feature-section-12.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:292;s:12:\"tmpl_created\";s:19:\"2024-02-19 13:55:37\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-12\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:15;a:14:{s:2:\"id\";i:2788;s:5:\"title\";s:18:\"Feature Section 11\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/feature-section-11.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:525;s:12:\"tmpl_created\";s:19:\"2024-02-19 13:53:22\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-11\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:16;a:14:{s:2:\"id\";i:2781;s:5:\"title\";s:15:\"Testimonials 06\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/testimonials-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:373;s:12:\"tmpl_created\";s:19:\"2024-02-19 13:51:14\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=testimonials-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:17;a:14:{s:2:\"id\";i:2778;s:5:\"title\";s:18:\"Feature Section 10\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/feature-section-10.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:444;s:12:\"tmpl_created\";s:19:\"2024-02-19 13:50:07\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-10\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:18;a:14:{s:2:\"id\";i:2775;s:5:\"title\";s:18:\"Feature Section 09\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/feature-section-09.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:503;s:12:\"tmpl_created\";s:19:\"2024-02-19 13:49:17\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-09\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:19;a:14:{s:2:\"id\";i:2770;s:5:\"title\";s:10:\"Marquee 01\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/marquee-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:69;s:12:\"tmpl_created\";s:19:\"2024-02-19 13:47:13\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=marquee-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Marquee\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:20;a:14:{s:2:\"id\";i:2766;s:5:\"title\";s:7:\"Hero 07\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/hero-07.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-02-19 13:44:57\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=hero-07\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:21;a:14:{s:2:\"id\";i:2737;s:5:\"title\";s:12:\"Fleet - Home\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/02/fleet-home.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:3306;s:12:\"tmpl_created\";s:19:\"2024-02-19 12:16:26\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=fleet-home\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:22;a:14:{s:2:\"id\";i:2697;s:5:\"title\";s:17:\"Global - Shipment\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/global-shipment.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:569;s:12:\"tmpl_created\";s:19:\"2024-01-22 16:13:58\";s:3:\"url\";s:93:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=global-shipment-2\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:23;a:14:{s:2:\"id\";i:2694;s:5:\"title\";s:7:\"Maps 06\";s:9:\"thumbnail\";s:102:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/global-contact.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:408;s:12:\"tmpl_created\";s:19:\"2024-01-22 16:11:37\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=maps-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Maps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:24;a:14:{s:2:\"id\";i:2689;s:5:\"title\";s:16:\"Global - Contact\";s:9:\"thumbnail\";s:102:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/global-contact.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:408;s:12:\"tmpl_created\";s:19:\"2024-01-22 16:06:50\";s:3:\"url\";s:90:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=global-contact\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:25;a:14:{s:2:\"id\";i:2686;s:5:\"title\";s:12:\"Portfolio 03\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/global-shipment.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:569;s:12:\"tmpl_created\";s:19:\"2024-01-22 16:05:31\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=portfolio-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Portfolio\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:26;a:14:{s:2:\"id\";i:2668;s:5:\"title\";s:16:\"Title Wrapper 06\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/title-wrapper-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:230;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:53:18\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=title-wrapper-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Title Wrapper\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:27;a:14:{s:2:\"id\";i:2663;s:5:\"title\";s:17:\"Global - Services\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/global-services.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:817;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:49:44\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=global-services\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:20:\"Required Blocks: E15\";}i:28;a:14:{s:2:\"id\";i:2660;s:5:\"title\";s:10:\"Clients 04\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/clients-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:46;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:48:17\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=clients-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Clients\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:29;a:14:{s:2:\"id\";i:2657;s:5:\"title\";s:15:\"Testimonials 05\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/testimonials-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:494;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:47:36\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=testimonials-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:30;a:14:{s:2:\"id\";i:2653;s:5:\"title\";s:11:\"Carousel 04\";s:9:\"thumbnail\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/carousel-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:295;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:46:39\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=carousel-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Carousel\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:13:\"Required: E13\";}i:31;a:14:{s:2:\"id\";i:2650;s:5:\"title\";s:12:\"Accordion 08\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/accordion-08.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:341;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:45:53\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=accordion-08\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Accordion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:32;a:14:{s:2:\"id\";i:2618;s:5:\"title\";s:17:\"Global - Partners\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/global-partners.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1212;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:33:18\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=global-partners\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:20:\"Required Blocks: E13\";}i:33;a:14:{s:2:\"id\";i:2611;s:5:\"title\";s:9:\"Footer 06\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/footer-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:271;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:19:16\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=footer-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Footer\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:34;a:14:{s:2:\"id\";i:2605;s:5:\"title\";s:9:\"Header 06\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/header-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:05:33\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=header-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Header\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:35;a:14:{s:2:\"id\";i:2602;s:5:\"title\";s:7:\"Maps 05\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/maps-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:245;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:04:35\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=maps-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Maps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:36;a:14:{s:2:\"id\";i:2597;s:5:\"title\";s:15:\"Testimonials 04\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/testimonials-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:380;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:02:58\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=testimonials-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:13:\"Required: E15\";}i:37;a:14:{s:2:\"id\";i:2594;s:5:\"title\";s:12:\"Slideshow 01\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/slideshow-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:256;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:02:12\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=slideshow-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Slideshow\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:38;a:14:{s:2:\"id\";i:2590;s:5:\"title\";s:7:\"Tabs 03\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/tabs-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:305;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:01:19\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=tabs-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Tabs\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:13:\"Required: E14\";}i:39;a:14:{s:2:\"id\";i:2587;s:5:\"title\";s:18:\"Feature Section 08\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/feature-section-08.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:287;s:12:\"tmpl_created\";s:19:\"2024-01-22 15:00:32\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-08\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:40;a:14:{s:2:\"id\";i:2583;s:5:\"title\";s:11:\"Carousel 03\";s:9:\"thumbnail\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/carousel-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:394;s:12:\"tmpl_created\";s:19:\"2024-01-22 14:59:35\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=carousel-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Carousel\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:13:\"Required: E13\";}i:41;a:14:{s:2:\"id\";i:2580;s:5:\"title\";s:18:\"Feature Section 07\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/feature-section-07.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:398;s:12:\"tmpl_created\";s:19:\"2024-01-22 14:58:46\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-07\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:42;a:14:{s:2:\"id\";i:2577;s:5:\"title\";s:8:\"Icons 06\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/icons-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:470;s:12:\"tmpl_created\";s:19:\"2024-01-22 14:57:59\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=icons-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Icons\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:43;a:14:{s:2:\"id\";i:2573;s:5:\"title\";s:7:\"Hero 06\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:419;s:12:\"tmpl_created\";s:19:\"2024-01-22 14:57:07\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=hero-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:18:\"Required: E11, E12\";}i:44;a:14:{s:2:\"id\";i:2563;s:5:\"title\";s:21:\"E15 - Testimonials 04\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/testimonials-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:380;s:12:\"tmpl_created\";s:19:\"2024-01-22 14:51:02\";s:3:\"url\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e15-testimonials-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E15\";}i:45;a:14:{s:2:\"id\";i:2555;s:5:\"title\";s:13:\"E14 - Tabs 03\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/tabs-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:305;s:12:\"tmpl_created\";s:19:\"2024-01-22 14:39:18\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e14-tabs-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E14\";}i:46;a:14:{s:2:\"id\";i:2547;s:5:\"title\";s:17:\"E13 - Carousel 03\";s:9:\"thumbnail\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/carousel-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:394;s:12:\"tmpl_created\";s:19:\"2024-01-22 14:31:25\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e13-carousel-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E13\";}i:47;a:14:{s:2:\"id\";i:2536;s:5:\"title\";s:13:\"E12 - Hero 06\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:419;s:12:\"tmpl_created\";s:19:\"2024-01-22 13:58:57\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e12-hero-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E12\";}i:48;a:14:{s:2:\"id\";i:2530;s:5:\"title\";s:13:\"E11 - Hero 06\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:419;s:12:\"tmpl_created\";s:19:\"2024-01-22 13:51:32\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e11-hero-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E11\";}i:49;a:14:{s:2:\"id\";i:2515;s:5:\"title\";s:13:\"Global - Home\";s:9:\"thumbnail\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/global-home.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:3265;s:12:\"tmpl_created\";s:19:\"2024-01-22 13:45:16\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=global-home\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:27:\"Required Blocks: E11 to E15\";}i:50;a:14:{s:2:\"id\";i:2449;s:5:\"title\";s:16:\"Title Wrapper 05\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/title-wrapper-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:230;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:43:12\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=title-wrapper-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Title Wrapper\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:51;a:14:{s:2:\"id\";i:2443;s:5:\"title\";s:20:\"Air Cargo - Services\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/air-cargo-services.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1182;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:38:28\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=air-cargo-services\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:20:\"Required Blocks: E09\";}i:52;a:14:{s:2:\"id\";i:2439;s:5:\"title\";s:17:\"Air Cargo - About\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/air-cargo-about.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:784;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:37:18\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=air-cargo-about\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:53;a:14:{s:2:\"id\";i:2434;s:5:\"title\";s:9:\"Footer 05\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/footer-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:240;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:27:46\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=footer-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Footer\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:54;a:14:{s:2:\"id\";i:2427;s:5:\"title\";s:9:\"Header 05\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/header-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:21:51\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=header-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Header\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:55;a:14:{s:2:\"id\";i:2424;s:5:\"title\";s:7:\"Maps 04\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/maps-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:245;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:21:00\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=maps-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Maps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:56;a:14:{s:2:\"id\";i:2420;s:5:\"title\";s:7:\"Blog 03\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/blog-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:428;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:20:00\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=blog-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Blog\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:57;a:14:{s:2:\"id\";i:2417;s:5:\"title\";s:10:\"Clients 03\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/clients-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:69;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:19:22\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=clients-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Clients\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:58;a:14:{s:2:\"id\";i:2413;s:5:\"title\";s:15:\"Testimonials 03\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/testimonials-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:206;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:18:25\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=testimonials-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:13:\"Required: E10\";}i:59;a:14:{s:2:\"id\";i:2410;s:5:\"title\";s:17:\"Call To Action 06\";s:9:\"thumbnail\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/cta-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:173;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:17:55\";s:3:\"url\";s:93:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=call-to-action-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"Call To Action\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:60;a:14:{s:2:\"id\";i:2407;s:5:\"title\";s:8:\"Steps 05\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/steps-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:220;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:17:16\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=steps-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Steps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:61;a:14:{s:2:\"id\";i:2404;s:5:\"title\";s:12:\"Accordion 07\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/accordion-07.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:333;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:16:36\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=accordion-07\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Accordion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:62;a:14:{s:2:\"id\";i:2400;s:5:\"title\";s:11:\"Carousel 02\";s:9:\"thumbnail\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/carousel-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:395;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:15:47\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=carousel-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Carousel\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:13:\"Required: E09\";}i:63;a:14:{s:2:\"id\";i:2397;s:5:\"title\";s:18:\"Feature Section 06\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/feature-section-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:284;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:15:07\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:64;a:14:{s:2:\"id\";i:2394;s:5:\"title\";s:18:\"Feature Section 05\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/feature-section-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:280;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:14:32\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:65;a:14:{s:2:\"id\";i:2391;s:5:\"title\";s:8:\"Icons 05\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/icons-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:334;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:13:35\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=icons-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Icons\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:66;a:14:{s:2:\"id\";i:2387;s:5:\"title\";s:7:\"Hero 05\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-19 15:12:39\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=hero-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:23:\"Required: E06, E07, E08\";}i:67;a:14:{s:2:\"id\";i:2367;s:5:\"title\";s:21:\"E10 - Testimonials 03\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/testimonials-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:206;s:12:\"tmpl_created\";s:19:\"2024-01-19 14:49:31\";s:3:\"url\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e10-testimonials-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E10\";}i:68;a:14:{s:2:\"id\";i:2337;s:5:\"title\";s:17:\"E09 - Carousel 02\";s:9:\"thumbnail\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/carousel-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:395;s:12:\"tmpl_created\";s:19:\"2024-01-19 13:45:30\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e09-carousel-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E09\";}i:69;a:14:{s:2:\"id\";i:2329;s:5:\"title\";s:13:\"E08 - Hero 05\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-19 13:37:30\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e08-hero-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E08\";}i:70;a:14:{s:2:\"id\";i:2324;s:5:\"title\";s:13:\"E07 - Hero 05\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-19 13:35:19\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e07-hero-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E07\";}i:71;a:14:{s:2:\"id\";i:2317;s:5:\"title\";s:13:\"E06 - Hero 05\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-19 13:29:30\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e06-hero-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E06\";}i:72;a:14:{s:2:\"id\";i:2299;s:5:\"title\";s:16:\"Air Cargo - Home\";s:9:\"thumbnail\";s:102:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/air-cargo-home.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:3420;s:12:\"tmpl_created\";s:19:\"2024-01-19 13:23:20\";s:3:\"url\";s:90:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=air-cargo-home\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:27:\"Required Blocks: E06 to E10\";}i:73;a:14:{s:2:\"id\";i:2241;s:5:\"title\";s:10:\"Contact 04\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/contact-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:750;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:57:51\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=contact-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:74;a:14:{s:2:\"id\";i:2235;s:5:\"title\";s:16:\"Image Section 02\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/image-section-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:276;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:56:45\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=image-section-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Image Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:75;a:14:{s:2:\"id\";i:2231;s:5:\"title\";s:17:\"Elegant - Contact\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/elegant-contact.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:985;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:48:39\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=elegant-contact\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:76;a:14:{s:2:\"id\";i:2228;s:5:\"title\";s:17:\"Call To Action 05\";s:9:\"thumbnail\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/cta-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:108;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:44:25\";s:3:\"url\";s:93:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=call-to-action-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"Call To Action\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:77;a:14:{s:2:\"id\";i:2225;s:5:\"title\";s:10:\"Clients 02\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/clients-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:70;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:43:37\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=clients-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Clients\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:78;a:14:{s:2:\"id\";i:2222;s:5:\"title\";s:17:\"Call To Action 04\";s:9:\"thumbnail\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/cta-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:129;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:42:54\";s:3:\"url\";s:93:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=call-to-action-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"Call To Action\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:79;a:14:{s:2:\"id\";i:2219;s:5:\"title\";s:18:\"Feature Section 04\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/feature-section-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1176;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:42:09\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:80;a:14:{s:2:\"id\";i:2209;s:5:\"title\";s:18:\"Elegant - Services\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/elegant-services.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1266;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:25:09\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=elegant-services\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:81;a:14:{s:2:\"id\";i:2196;s:5:\"title\";s:18:\"Elegant - About Us\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/elegant-about-us.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1523;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:07:03\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=elegant-about-us\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:82;a:14:{s:2:\"id\";i:2193;s:5:\"title\";s:16:\"Image Section 01\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/section-image-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:273;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:05:24\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=image-section-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Image Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:83;a:14:{s:2:\"id\";i:2186;s:5:\"title\";s:16:\"Title Wrapper 04\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/title-wrapper-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:112;s:12:\"tmpl_created\";s:19:\"2024-01-19 12:02:25\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=title-wrapper-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Title Wrapper\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:84;a:14:{s:2:\"id\";i:2177;s:5:\"title\";s:9:\"Footer 04\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/footer-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:231;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:35:38\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=footer-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Footer\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:85;a:14:{s:2:\"id\";i:2163;s:5:\"title\";s:9:\"Header 04\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/header-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:22:39\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=header-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Header\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:86;a:14:{s:2:\"id\";i:2157;s:5:\"title\";s:10:\"Contact 03\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/contact-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:434;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:15:12\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=contact-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:87;a:14:{s:2:\"id\";i:2154;s:5:\"title\";s:18:\"Feature Section 03\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/feature-section-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:461;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:14:31\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:88;a:14:{s:2:\"id\";i:2151;s:5:\"title\";s:8:\"Steps 04\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/steps-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:214;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:13:55\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=steps-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Steps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:89;a:14:{s:2:\"id\";i:2148;s:5:\"title\";s:17:\"Call To Action 03\";s:9:\"thumbnail\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/cta-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:355;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:13:14\";s:3:\"url\";s:93:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=call-to-action-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"Call To Action\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:90;a:14:{s:2:\"id\";i:2145;s:5:\"title\";s:12:\"Accordion 06\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/accordion-06.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:396;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:12:37\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=accordion-06\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Accordion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:91;a:14:{s:2:\"id\";i:2142;s:5:\"title\";s:17:\"Call to Action 02\";s:9:\"thumbnail\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/cta-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:284;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:11:48\";s:3:\"url\";s:93:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=call-to-action-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"Call To Action\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:92;a:14:{s:2:\"id\";i:2139;s:5:\"title\";s:12:\"Accordion 05\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/accordion-05.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:390;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:11:08\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=accordion-05\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Accordion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:93;a:14:{s:2:\"id\";i:2136;s:5:\"title\";s:7:\"Hero 04\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:425;s:12:\"tmpl_created\";s:19:\"2024-01-18 15:09:55\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=hero-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:94;a:14:{s:2:\"id\";i:2118;s:5:\"title\";s:14:\"Elegant - Home\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/elegant-home.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:2888;s:12:\"tmpl_created\";s:19:\"2024-01-18 14:29:00\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=elegant-home\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:95;a:14:{s:2:\"id\";i:2101;s:5:\"title\";s:24:\"International - Shipment\";s:9:\"thumbnail\";s:110:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/international-shipment.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1114;s:12:\"tmpl_created\";s:19:\"2024-01-17 14:09:34\";s:3:\"url\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=international-shipment\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:96;a:14:{s:2:\"id\";i:2097;s:5:\"title\";s:24:\"International - Services\";s:9:\"thumbnail\";s:109:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/inernational-services.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1196;s:12:\"tmpl_created\";s:19:\"2024-01-17 14:05:15\";s:3:\"url\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=international-services\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:97;a:14:{s:2:\"id\";i:2093;s:5:\"title\";s:25:\"International - Logistics\";s:9:\"thumbnail\";s:111:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/international-logistics.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:769;s:12:\"tmpl_created\";s:19:\"2024-01-17 14:02:05\";s:3:\"url\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=international-logistics\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:20:\"Required Blocks: E02\";}i:98;a:14:{s:2:\"id\";i:2090;s:5:\"title\";s:12:\"Portfolio 02\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/portfolio-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:756;s:12:\"tmpl_created\";s:19:\"2024-01-17 13:51:40\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=portfolio-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Portfolio\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:99;a:14:{s:2:\"id\";i:2086;s:5:\"title\";s:28:\"International - Case Studies\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/portfolio-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:756;s:12:\"tmpl_created\";s:19:\"2024-01-17 13:50:06\";s:3:\"url\";s:102:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=international-case-studies\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:100;a:14:{s:2:\"id\";i:2080;s:5:\"title\";s:16:\"Title Wrapper 03\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/title-wrapper-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:276;s:12:\"tmpl_created\";s:19:\"2024-01-17 13:44:49\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=title-wrapper-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Title Wrapper\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:101;a:14:{s:2:\"id\";i:2075;s:5:\"title\";s:9:\"Footer 03\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/footer-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:275;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:52:45\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=footer-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Footer\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:102;a:14:{s:2:\"id\";i:2069;s:5:\"title\";s:9:\"Header 03\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/header-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:47:03\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=header-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Header\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:103;a:14:{s:2:\"id\";i:2063;s:5:\"title\";s:10:\"Contact 02\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/contact-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:580;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:43:40\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=contact-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:104;a:14:{s:2:\"id\";i:2058;s:5:\"title\";s:10:\"Counter 02\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/counter-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:263;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:41:58\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=counter-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Counter\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:105;a:14:{s:2:\"id\";i:2055;s:5:\"title\";s:15:\"Testimonials 02\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/testimonials-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:296;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:40:00\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=testimonials-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:106;a:14:{s:2:\"id\";i:2052;s:5:\"title\";s:12:\"Accordion 04\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/accordion-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:477;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:33:43\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=accordion-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Accordion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:107;a:14:{s:2:\"id\";i:2049;s:5:\"title\";s:8:\"Icons 04\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/icons-04.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:244;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:26:19\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=icons-04\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Icons\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:108;a:14:{s:2:\"id\";i:2045;s:5:\"title\";s:16:\"Stack Section 01\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/stack-section-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:408;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:24:04\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=stack-section-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Stack Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:23:\"Required: E03, E04, E05\";}i:109;a:14:{s:2:\"id\";i:2042;s:5:\"title\";s:8:\"Steps 03\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/steps-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:501;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:23:02\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=steps-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Steps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:110;a:14:{s:2:\"id\";i:2039;s:5:\"title\";s:18:\"Feature Section 02\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/feature-section-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:313;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:21:41\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:111;a:14:{s:2:\"id\";i:2033;s:5:\"title\";s:11:\"Carousel 01\";s:9:\"thumbnail\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/carousel-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:475;s:12:\"tmpl_created\";s:19:\"2024-01-17 12:19:31\";s:3:\"url\";s:87:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=carousel-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Carousel\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:13:\"Required: E02\";}i:112;a:14:{s:2:\"id\";i:2030;s:5:\"title\";s:12:\"Accordion 03\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/accordion-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:274;s:12:\"tmpl_created\";s:19:\"2024-01-17 11:45:04\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=accordion-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Accordion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:113;a:14:{s:2:\"id\";i:2027;s:5:\"title\";s:7:\"Hero 03\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:498;s:12:\"tmpl_created\";s:19:\"2024-01-17 11:44:11\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=hero-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:114;a:14:{s:2:\"id\";i:2015;s:5:\"title\";s:22:\"E05 - Stack Section 01\";s:9:\"thumbnail\";b:0;s:9:\"img_width\";N;s:10:\"img_height\";N;s:12:\"tmpl_created\";s:19:\"2024-01-17 11:22:20\";s:3:\"url\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e05-stack-section-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";N;}i:115;a:14:{s:2:\"id\";i:2010;s:5:\"title\";s:22:\"E04 - Stack Section 01\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/stack-section-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:408;s:12:\"tmpl_created\";s:19:\"2024-01-17 11:20:32\";s:3:\"url\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e04-stack-section-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E04\";}i:116;a:14:{s:2:\"id\";i:2003;s:5:\"title\";s:22:\"E03 - Stack Section 01\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/stack-section-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:408;s:12:\"tmpl_created\";s:19:\"2024-01-17 11:16:07\";s:3:\"url\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e03-stack-section-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E03\";}i:117;a:14:{s:2:\"id\";i:1994;s:5:\"title\";s:17:\"E02 - Carousel 01\";s:9:\"thumbnail\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/carousel-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:475;s:12:\"tmpl_created\";s:19:\"2024-01-17 10:43:29\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e02-carousel-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E02\";}i:118;a:14:{s:2:\"id\";i:1974;s:5:\"title\";s:20:\"International - Home\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/international-home.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:4093;s:12:\"tmpl_created\";s:19:\"2024-01-17 10:11:06\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=international-home\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:27:\"Required Blocks: E02 to E05\";}i:119;a:14:{s:2:\"id\";i:1911;s:5:\"title\";s:24:\"Ocean Explorer - Pricing\";s:9:\"thumbnail\";s:110:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/ocean-explorer-pricing.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:673;s:12:\"tmpl_created\";s:19:\"2024-01-16 14:48:22\";s:3:\"url\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=ocean-explorer-pricing-2\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:120;a:14:{s:2:\"id\";i:1907;s:5:\"title\";s:25:\"Ocean Explorer - Services\";s:9:\"thumbnail\";s:111:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/ocean-explorer-services.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1274;s:12:\"tmpl_created\";s:19:\"2024-01-16 14:43:55\";s:3:\"url\";s:99:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=ocean-explorer-services\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:121;a:14:{s:2:\"id\";i:1904;s:5:\"title\";s:12:\"Accordion 02\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/accordion-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:343;s:12:\"tmpl_created\";s:19:\"2024-01-16 14:40:12\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=accordion-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Accordion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:122;a:14:{s:2:\"id\";i:1901;s:5:\"title\";s:16:\"Pricing Table 01\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/pricing-table-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:382;s:12:\"tmpl_created\";s:19:\"2024-01-16 14:36:38\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=pricing-table-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Pricing Table\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:123;a:14:{s:2:\"id\";i:1881;s:5:\"title\";s:16:\"Title Wrapper 02\";s:9:\"thumbnail\";s:104:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/title-wrapper-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:228;s:12:\"tmpl_created\";s:19:\"2024-01-16 14:23:16\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=title-wrapper-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Title Wrapper\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:124;a:14:{s:2:\"id\";i:1877;s:5:\"title\";s:9:\"Footer 02\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/footer-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:222;s:12:\"tmpl_created\";s:19:\"2024-01-16 14:09:02\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=footer-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Footer\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:125;a:14:{s:2:\"id\";i:1873;s:5:\"title\";s:9:\"Header 02\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/header-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-16 14:02:56\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=header-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Header\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:126;a:14:{s:2:\"id\";i:1870;s:5:\"title\";s:17:\"Call To Action 01\";s:9:\"thumbnail\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/cta-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:180;s:12:\"tmpl_created\";s:19:\"2024-01-16 14:02:04\";s:3:\"url\";s:93:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=call-to-action-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"Call To Action\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:127;a:14:{s:2:\"id\";i:1867;s:5:\"title\";s:7:\"Blog 02\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/blog-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:459;s:12:\"tmpl_created\";s:19:\"2024-01-16 14:01:02\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=blog-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Blog\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:128;a:14:{s:2:\"id\";i:1863;s:5:\"title\";s:7:\"Maps 03\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/maps-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:443;s:12:\"tmpl_created\";s:19:\"2024-01-16 13:59:25\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=maps-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Maps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:129;a:14:{s:2:\"id\";i:1860;s:5:\"title\";s:8:\"Icons 03\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/icons-03.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:438;s:12:\"tmpl_created\";s:19:\"2024-01-16 13:58:32\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=icons-03\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Icons\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:130;a:14:{s:2:\"id\";i:1857;s:5:\"title\";s:8:\"Steps 02\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/steps-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:364;s:12:\"tmpl_created\";s:19:\"2024-01-16 13:57:44\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=steps-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Steps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:131;a:14:{s:2:\"id\";i:1854;s:5:\"title\";s:7:\"Tabs 02\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/tabs-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:465;s:12:\"tmpl_created\";s:19:\"2024-01-16 13:56:41\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=tabs-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Tabs\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:132;a:14:{s:2:\"id\";i:1849;s:5:\"title\";s:7:\"Hero 02\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:447;s:12:\"tmpl_created\";s:19:\"2024-01-16 13:54:08\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=hero-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:133;a:14:{s:2:\"id\";i:1829;s:5:\"title\";s:21:\"Ocean Explorer - Home\";s:9:\"thumbnail\";s:107:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/ocean-explorer-home.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:2804;s:12:\"tmpl_created\";s:19:\"2024-01-16 12:07:33\";s:3:\"url\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=ocean-explorer-home\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:134;a:14:{s:2:\"id\";i:1807;s:5:\"title\";s:13:\"Portfolio Two\";s:9:\"thumbnail\";s:102:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/pf-growth-plan.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:719;s:12:\"tmpl_created\";s:19:\"2024-01-15 12:01:32\";s:3:\"url\";s:89:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=portfolio-two\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:135;a:14:{s:2:\"id\";i:1804;s:5:\"title\";s:10:\"Content 02\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/content-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1031;s:12:\"tmpl_created\";s:19:\"2024-01-15 12:00:03\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=content-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Content\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:136;a:14:{s:2:\"id\";i:1798;s:5:\"title\";s:10:\"Sidebar 02\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/sidebar-02.jpg\";s:9:\"img_width\";i:763;s:10:\"img_height\";i:2044;s:12:\"tmpl_created\";s:19:\"2024-01-15 11:59:09\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=sidebar-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Sidebar\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:137;a:14:{s:2:\"id\";i:1792;s:5:\"title\";s:10:\"Content 01\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/content-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1533;s:12:\"tmpl_created\";s:19:\"2024-01-15 11:43:48\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=content-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Content\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:138;a:14:{s:2:\"id\";i:1789;s:5:\"title\";s:10:\"Sidebar 01\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/sidebar-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1881;s:12:\"tmpl_created\";s:19:\"2024-01-15 11:42:07\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=sidebar-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Sidebar\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:139;a:14:{s:2:\"id\";i:1783;s:5:\"title\";s:13:\"Portfolio One\";s:9:\"thumbnail\";s:112:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/pf-business-consultation.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:990;s:12:\"tmpl_created\";s:19:\"2024-01-15 11:40:33\";s:3:\"url\";s:89:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=portfolio-one\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:140;a:14:{s:2:\"id\";i:1769;s:5:\"title\";s:8:\"Steps 01\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/steps-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:397;s:12:\"tmpl_created\";s:19:\"2024-01-15 11:19:08\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=steps-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Steps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:141;a:14:{s:2:\"id\";i:1762;s:5:\"title\";s:23:\"Road Freight - Services\";s:9:\"thumbnail\";s:109:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/road-freight-services.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:1889;s:12:\"tmpl_created\";s:19:\"2024-01-15 11:12:32\";s:3:\"url\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=road-freight-services\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:142;a:14:{s:2:\"id\";i:1757;s:5:\"title\";s:7:\"Maps 02\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/maps-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:245;s:12:\"tmpl_created\";s:19:\"2024-01-15 11:02:02\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=maps-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Maps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:143;a:14:{s:2:\"id\";i:1752;s:5:\"title\";s:10:\"Contact 01\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/contact-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:425;s:12:\"tmpl_created\";s:19:\"2024-01-15 11:01:00\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=contact-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:144;a:14:{s:2:\"id\";i:1737;s:5:\"title\";s:22:\"Road Freight - Contact\";s:9:\"thumbnail\";s:108:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/road-freight-contact.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:643;s:12:\"tmpl_created\";s:19:\"2024-01-15 10:51:53\";s:3:\"url\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=road-freight-contact\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:145;a:14:{s:2:\"id\";i:1734;s:5:\"title\";s:12:\"Portfolio 01\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/portfolio-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:519;s:12:\"tmpl_created\";s:19:\"2024-01-15 10:37:21\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=portfolio-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Portfolio\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:146;a:14:{s:2:\"id\";i:1729;s:5:\"title\";s:27:\"Road Freight - Case Studies\";s:9:\"thumbnail\";s:113:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/road-freight-case-studies.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:800;s:12:\"tmpl_created\";s:19:\"2024-01-15 10:31:14\";s:3:\"url\";s:101:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=road-freight-case-studies\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:147;a:14:{s:2:\"id\";i:712;s:5:\"title\";s:7:\"Team 02\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/team-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:479;s:12:\"tmpl_created\";s:19:\"2024-01-15 09:29:56\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=team-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:148;a:14:{s:2:\"id\";i:709;s:5:\"title\";s:10:\"Counter 01\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/counter-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:176;s:12:\"tmpl_created\";s:19:\"2024-01-15 09:29:01\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=counter-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Counter\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:149;a:14:{s:2:\"id\";i:706;s:5:\"title\";s:7:\"Team 01\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/team-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:480;s:12:\"tmpl_created\";s:19:\"2024-01-15 09:27:55\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=team-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:150;a:14:{s:2:\"id\";i:703;s:5:\"title\";s:12:\"Accordion 01\";s:9:\"thumbnail\";s:100:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/accordion-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:494;s:12:\"tmpl_created\";s:19:\"2024-01-15 09:27:07\";s:3:\"url\";s:88:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=accordion-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Accordion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:151;a:14:{s:2:\"id\";i:700;s:5:\"title\";s:10:\"Gallery 01\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/gallery-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:467;s:12:\"tmpl_created\";s:19:\"2024-01-15 09:26:22\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=gallery-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:152;a:14:{s:2:\"id\";i:697;s:5:\"title\";s:7:\"Tabs 01\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/tabs-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:239;s:12:\"tmpl_created\";s:19:\"2024-01-15 09:25:29\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=tabs-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Tabs\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:153;a:14:{s:2:\"id\";i:684;s:5:\"title\";s:23:\"Road Freight - About Us\";s:9:\"thumbnail\";s:109:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/road-freight-about-us.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:2509;s:12:\"tmpl_created\";s:19:\"2024-01-15 09:05:57\";s:3:\"url\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=road-freight-about-us\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:154;a:14:{s:2:\"id\";i:661;s:5:\"title\";s:16:\"Title Wrapper 01\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/title-wraper-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:278;s:12:\"tmpl_created\";s:19:\"2024-01-15 08:44:26\";s:3:\"url\";s:92:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=title-wrapper-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:13:\"Title Wrapper\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:155;a:14:{s:2:\"id\";i:657;s:5:\"title\";s:8:\"Modal 02\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/modal-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:413;s:12:\"tmpl_created\";s:19:\"2024-01-15 08:37:19\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=modal-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Modal\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:156;a:14:{s:2:\"id\";i:643;s:5:\"title\";s:8:\"Modal 01\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/modal-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:503;s:12:\"tmpl_created\";s:19:\"2024-01-15 08:28:05\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=modal-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Modal\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:157;a:14:{s:2:\"id\";i:630;s:5:\"title\";s:9:\"Header 01\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/header-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:460;s:12:\"tmpl_created\";s:19:\"2024-01-12 16:20:12\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=header-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Header\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:158;a:14:{s:2:\"id\";i:618;s:5:\"title\";s:9:\"Footer 01\";s:9:\"thumbnail\";s:97:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/footer-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:400;s:12:\"tmpl_created\";s:19:\"2024-01-12 16:10:09\";s:3:\"url\";s:85:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=footer-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"Footer\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:159;a:14:{s:2:\"id\";i:615;s:5:\"title\";s:7:\"Maps 01\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/maps-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:441;s:12:\"tmpl_created\";s:19:\"2024-01-12 16:02:10\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=maps-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Maps\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:160;a:14:{s:2:\"id\";i:612;s:5:\"title\";s:7:\"Blog 01\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/blog-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:496;s:12:\"tmpl_created\";s:19:\"2024-01-12 16:01:23\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=blog-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Blog\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:161;a:14:{s:2:\"id\";i:607;s:5:\"title\";s:15:\"Testimonials 01\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/testimonials-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:439;s:12:\"tmpl_created\";s:19:\"2024-01-12 15:53:17\";s:3:\"url\";s:91:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=testimonials-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:13:\"Required: E01\";}i:162;a:14:{s:2:\"id\";i:604;s:5:\"title\";s:18:\"Feature Section 01\";s:9:\"thumbnail\";s:106:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/feature-section-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:433;s:12:\"tmpl_created\";s:19:\"2024-01-12 15:49:47\";s:3:\"url\";s:94:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=feature-section-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"Feature Section\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:163;a:14:{s:2:\"id\";i:600;s:5:\"title\";s:8:\"Icons 02\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/icons-02.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:465;s:12:\"tmpl_created\";s:19:\"2024-01-12 15:48:56\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=icons-02\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Icons\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:164;a:14:{s:2:\"id\";i:597;s:5:\"title\";s:8:\"Icons 01\";s:9:\"thumbnail\";s:96:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/icons-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:447;s:12:\"tmpl_created\";s:19:\"2024-01-12 15:48:19\";s:3:\"url\";s:84:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=icons-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"Icons\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:165;a:14:{s:2:\"id\";i:594;s:5:\"title\";s:10:\"Clients 01\";s:9:\"thumbnail\";s:98:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/clients-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:113;s:12:\"tmpl_created\";s:19:\"2024-01-12 15:47:35\";s:3:\"url\";s:86:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=clients-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Clients\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:166;a:14:{s:2:\"id\";i:591;s:5:\"title\";s:7:\"Hero 01\";s:9:\"thumbnail\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/hero-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:390;s:12:\"tmpl_created\";s:19:\"2024-01-12 15:46:52\";s:3:\"url\";s:83:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=hero-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:0:\"\";}i:167;a:14:{s:2:\"id\";i:84;s:5:\"title\";s:21:\"E01 - Testimonials 01\";s:9:\"thumbnail\";s:103:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/testimonials-01.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:439;s:12:\"tmpl_created\";s:19:\"2024-01-12 15:19:16\";s:3:\"url\";s:95:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=e01-testimonials-01\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"Expansion\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:3:\"E01\";}i:168;a:14:{s:2:\"id\";i:63;s:5:\"title\";s:19:\"Road Freight - Home\";s:9:\"thumbnail\";s:105:\"https://staging.liquid-themes.com/logisticshubcollection/wp-content/uploads/2024/01/road_freight_home.jpg\";s:9:\"img_width\";i:800;s:10:\"img_height\";i:3193;s:12:\"tmpl_created\";s:19:\"2024-01-12 14:45:09\";s:3:\"url\";s:93:\"https://staging.liquid-themes.com/logisticshubcollection/?elementor_library=road-freight-home\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:0;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";i:0;s:5:\"alert\";s:20:\"Required Blocks: E01\";}}}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1784, 'elementor_library_category_children', 'a:0:{}', 'yes'),
(1894, 'elementor_unfiltered_files_upload', '1', 'yes'),
(1924, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(2043, 'elementor_allow_tracking', 'no', 'yes'),
(2044, 'elementor_tracker_notice', '1', 'yes'),
(2163, '_elementor_editor_upgrade_notice_dismissed', '1744886026', 'yes'),
(2473, 'fm_key', 'k5CirHJKDnU0NEIca6oved1wz', 'yes'),
(2476, 'filemanager_email_verified_1', 'yes', 'yes'),
(2477, 'mk_fm_close_fm_help_c_fm', 'done', 'yes'),
(2835, '_elementor_settings_update_time', '1719215550', 'yes'),
(2836, 'elementor_google_maps_api_key', '', 'yes'),
(2837, 'elementor_editor_break_lines', '', 'yes'),
(2838, 'elementor_google_font', '1', 'yes'),
(2839, 'elementor_load_fa4_shim', 'yes', 'yes'),
(2840, 'elementor_meta_generator_tag', '', 'yes'),
(2841, 'elementor_optimized_image_loading', '1', 'yes'),
(2842, 'elementor_optimized_gutenberg_loading', '1', 'yes'),
(2843, 'elementor_experiment-e_optimized_control_loading', 'default', 'yes'),
(2844, 'elementor_experiment-editor_v2', 'default', 'yes'),
(2845, 'elementor_experiment-landing-pages', 'default', 'yes'),
(2846, 'elementor_experiment-nested-elements', 'default', 'yes'),
(2847, 'elementor_experiment-e_lazyload', 'default', 'yes'),
(2848, 'elementor_experiment-e_element_cache', 'default', 'yes'),
(2849, 'elementor_experiment-e_optimized_css_loading', 'default', 'yes'),
(2850, 'elementor_experiment-e_font_icon_svg', 'default', 'yes'),
(2851, 'elementor_experiment-additional_custom_breakpoints', 'default', 'yes'),
(2852, 'elementor_experiment-container_grid', 'default', 'yes'),
(2853, 'elementor_experiment-e_swiper_latest', 'default', 'yes'),
(2854, 'elementor_experiment-ai-layout', 'default', 'yes'),
(3280, 'wpbottommenu_condition', 'woocommerce', 'yes'),
(3281, 'wpbottommenu_woocommerce_condition', 'tags', 'yes'),
(3282, 'wpbottommenu_user_role_condition', 'a:0:{}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(3352, 'elementor_controls_usage', 'a:4:{s:9:\"container\";a:14:{s:8:\"lqd-text\";a:2:{s:5:\"count\";i:22;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:21:\"section_section_title\";a:3:{s:16:\"lqd_text_content\";i:22;s:19:\"lqd_text_split_type\";i:5;s:12:\"lqd_text_tag\";i:18;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:9:{s:26:\"lqd_parallax_keyframes_all\";i:22;s:24:\"lqd_inview_keyframes_all\";i:22;s:10:\"lqd_inview\";i:7;s:14:\"lqd_aa_opacity\";i:3;s:21:\"lqd_aa_opacity_normal\";i:3;s:20:\"lqd_aa_opacity_hover\";i:3;s:25:\"lqd_aa_opacity_transition\";i:3;s:27:\"lqd_inview_settings_stagger\";i:2;s:31:\"lqd_inview_settings_start_delay\";i:1;}s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:5;s:14:\"_element_width\";i:15;s:21:\"_element_custom_width\";i:8;s:21:\"_element_width_mobile\";i:9;s:10:\"_flex_size\";i:3;s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:14:\"lqd_text_color\";i:6;s:16:\"lqd_text_opacity\";i:2;s:30:\"lqd_text_typography_typography\";i:6;s:29:\"lqd_text_typography_font_size\";i:5;s:31:\"lqd_text_typography_line_height\";i:4;s:30:\"lqd_text_typography_font_style\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:4:{s:26:\"lqd_parallax_keyframes_all\";i:2;s:24:\"lqd_inview_keyframes_all\";i:2;s:10:\"lqd_inview\";i:2;s:31:\"lqd_inview_settings_start_delay\";i:2;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:28;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:14:\"flex_direction\";i:24;s:16:\"flex_align_items\";i:13;s:8:\"flex_gap\";i:10;s:9:\"flex_wrap\";i:15;s:5:\"width\";i:13;s:20:\"flex_justify_content\";i:15;s:13:\"content_width\";i:16;s:10:\"min_height\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"lqd_animations_section\";a:4:{s:26:\"lqd_parallax_keyframes_all\";i:28;s:24:\"lqd_inview_keyframes_all\";i:28;s:10:\"lqd_inview\";i:6;s:31:\"lqd_inview_settings_start_delay\";i:5;}s:14:\"section_layout\";a:3:{s:7:\"padding\";i:14;s:6:\"margin\";i:6;s:10:\"_flex_size\";i:2;}s:44:\"lqd_sticky_container_advanced_styles_section\";a:1:{s:26:\"lqd_sticky_section_padding\";i:1;}}s:5:\"style\";a:3:{s:14:\"section_border\";a:2:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:19:\"background_bg_width\";i:1;}s:25:\"lqd_sticky_styles_section\";a:2:{s:34:\"lqd_sticky_container_bg_background\";i:1;s:29:\"lqd_sticky_container_bg_color\";i:1;}}}}s:12:\"lqd-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"general_section\";a:2:{s:5:\"cells\";i:1;s:11:\"wrap_around\";i:1;}s:18:\"navigation_section\";a:4:{s:13:\"nav_placement\";i:1;s:9:\"nav_align\";i:1;s:17:\"nav_orientation_h\";i:1;s:12:\"nav_offset_y\";i:1;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:3:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;s:10:\"lqd_inview\";i:1;}}s:5:\"style\";a:2:{s:19:\"cells_style_section\";a:6:{s:10:\"cell_width\";i:1;s:12:\"cell_padding\";i:1;s:18:\"cell_border_border\";i:1;s:17:\"cell_border_width\";i:1;s:17:\"cell_border_color\";i:1;s:11:\"cell_margin\";i:1;}s:18:\"navs_style_section\";a:7:{s:14:\"nav_dimensions\";i:1;s:9:\"nav_color\";i:1;s:17:\"nav_border_radius\";i:1;s:15:\"nav_color_hover\";i:1;s:31:\"nav_background_hover_background\";i:1;s:26:\"nav_background_hover_color\";i:1;s:7:\"nav_gap\";i:1;}}}}s:11:\"lqd-counter\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"general_section\";a:5:{s:8:\"count_to\";i:3;s:20:\"dynamic_counter_list\";i:3;s:15:\"lqd_counter_tag\";i:3;s:10:\"count_from\";i:2;s:14:\"counter_suffix\";i:1;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:3;s:24:\"lqd_inview_keyframes_all\";i:3;}s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:3;s:21:\"_element_width_mobile\";i:3;s:21:\"_element_custom_width\";i:3;}}s:5:\"style\";a:1:{s:22:\"counters_style_section\";a:1:{s:13:\"counter_color\";i:3;}}}}s:7:\"metform\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:10:\"mf_form_id\";i:2;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:3:{s:26:\"lqd_parallax_keyframes_all\";i:2;s:24:\"lqd_inview_keyframes_all\";i:2;s:10:\"lqd_inview\";i:1;}s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}s:9:\"lqd-image\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"general_section\";a:1:{s:5:\"image\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:3;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:8:\"_z_index\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:3;s:24:\"lqd_inview_keyframes_all\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:2;}}}}s:7:\"lqd-box\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"general_section\";a:12:{s:5:\"title\";i:6;s:8:\"subtitle\";i:3;s:11:\"description\";i:6;s:9:\"icon_list\";i:6;s:13:\"selected_icon\";i:5;s:12:\"subtitle_tag\";i:3;s:8:\"ib_title\";i:3;s:11:\"show_button\";i:3;s:16:\"ib_selected_icon\";i:3;s:14:\"ib_button_link\";i:3;s:4:\"link\";i:2;s:29:\"image_liquid_background_items\";i:1;}s:29:\"positioning_alignment_section\";a:3:{s:16:\"separate_content\";i:3;s:22:\"separate_content_parts\";i:3;s:26:\"separate_content_placement\";i:3;}s:17:\"ib_button_effects\";a:3:{s:22:\"ib_button_hover_effect\";i:3;s:21:\"ib_button_icon_effect\";i:3;s:27:\"ib_button_icon_hover_effect\";i:3;}}s:8:\"advanced\";a:4:{s:22:\"lqd_animations_section\";a:4:{s:26:\"lqd_parallax_keyframes_all\";i:6;s:24:\"lqd_inview_keyframes_all\";i:6;s:10:\"lqd_inview\";i:3;s:31:\"lqd_inview_settings_start_delay\";i:2;}s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:3;s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:3;s:21:\"_element_width_mobile\";i:3;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:3;}s:18:\"_section_transform\";a:4:{s:29:\"_transform_scale_effect_hover\";i:1;s:27:\"_transform_transition_hover\";i:1;s:34:\"_transform_translate_popover_hover\";i:1;s:34:\"_transform_translateY_effect_hover\";i:1;}}s:5:\"style\";a:9:{s:19:\"icons_style_section\";a:2:{s:14:\"icon_font_size\";i:5;s:11:\"icon_margin\";i:5;}s:20:\"titles_style_section\";a:5:{s:12:\"title_margin\";i:6;s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_line_height\";i:5;s:29:\"title_typography_word_spacing\";i:2;}s:23:\"subtitles_style_section\";a:3:{s:15:\"subtitle_margin\";i:3;s:31:\"subtitle_typography_line_height\";i:2;s:32:\"subtitle_typography_word_spacing\";i:2;}s:26:\"descriptions_style_section\";a:3:{s:18:\"description_margin\";i:3;s:34:\"description_typography_line_height\";i:2;s:35:\"description_typography_word_spacing\";i:2;}s:28:\"ib_button_icon_style_section\";a:1:{s:19:\"ib_button_icon_size\";i:3;}s:23:\"ib_button_style_section\";a:2:{s:25:\"ib_typography_line_height\";i:2;s:26:\"ib_typography_word_spacing\";i:2;}s:20:\"labels_style_section\";a:2:{s:28:\"label_typography_line_height\";i:2;s:29:\"label_typography_word_spacing\";i:2;}s:23:\"iconlists_style_section\";a:2:{s:31:\"iconlist_typography_line_height\";i:2;s:32:\"iconlist_typography_word_spacing\";i:2;}s:20:\"images_style_section\";a:2:{s:12:\"image_margin\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:9:\"lqd-modal\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:15:\"general_section\";a:2:{s:10:\"modal_type\";i:3;s:5:\"modal\";i:3;}s:23:\"trigger_general_section\";a:3:{s:12:\"trigger_type\";i:3;s:12:\"trigger_text\";i:3;s:13:\"selected_icon\";i:1;}s:25:\"modal_positioning_section\";a:5:{s:29:\"modal_close_btn_orientation_h\";i:1;s:24:\"modal_close_btn_offset_x\";i:1;s:19:\"modal_orientation_h\";i:1;s:18:\"modal_offset_x_end\";i:1;s:28:\"modal_close_btn_offset_x_end\";i:1;}s:15:\"trigger_effects\";a:1:{s:20:\"trigger_hover_effect\";i:2;}}s:5:\"style\";a:6:{s:21:\"trigger_style_section\";a:11:{s:13:\"trigger_color\";i:3;s:20:\"trigger_color_active\";i:2;s:19:\"trigger_color_hover\";i:2;s:31:\"trigger_background_active_color\";i:2;s:15:\"trigger_padding\";i:1;s:29:\"trigger_background_background\";i:1;s:24:\"trigger_background_color\";i:1;s:21:\"trigger_border_radius\";i:1;s:35:\"trigger_background_hover_background\";i:1;s:30:\"trigger_background_hover_color\";i:1;s:36:\"trigger_background_active_background\";i:1;}s:24:\"bars_shape_style_section\";a:19:{s:20:\"bars_shape_dimension\";i:2;s:24:\"bars_shape_border_border\";i:1;s:23:\"bars_shape_border_width\";i:1;s:23:\"bars_shape_border_color\";i:1;s:24:\"bars_shape_border_radius\";i:2;s:39:\"bars_shape_background_active_background\";i:2;s:34:\"bars_shape_background_active_color\";i:2;s:38:\"bars_shape_background_hover_background\";i:2;s:33:\"bars_shape_background_hover_color\";i:2;s:30:\"bars_shape_border_hover_border\";i:1;s:29:\"bars_shape_border_hover_color\";i:1;s:31:\"bars_shape_border_active_border\";i:1;s:30:\"bars_shape_border_active_width\";i:1;s:30:\"bars_shape_border_active_color\";i:1;s:44:\"bars_shape_box_shadow_active_box_shadow_type\";i:1;s:39:\"bars_shape_box_shadow_active_box_shadow\";i:1;s:31:\"bars_shape_border_radius_active\";i:1;s:32:\"bars_shape_background_background\";i:1;s:27:\"bars_shape_background_color\";i:1;}s:26:\"modal_inners_style_section\";a:12:{s:33:\"modal_inner_background_background\";i:3;s:28:\"modal_inner_background_color\";i:3;s:28:\"modal_inner_background_image\";i:1;s:27:\"modal_inner_background_size\";i:1;s:31:\"modal_inner_background_bg_width\";i:1;s:22:\"modal_inner_dimensions\";i:1;s:19:\"modal_inner_padding\";i:1;s:25:\"modal_inner_border_radius\";i:1;s:38:\"modal_inner_box_shadow_box_shadow_type\";i:1;s:33:\"modal_inner_box_shadow_box_shadow\";i:1;s:17:\"modal_inner_width\";i:1;s:18:\"modal_inner_margin\";i:1;}s:26:\"lqd_sticky_trigger_section\";a:9:{s:24:\"lqd_sticky_trigger_color\";i:1;s:30:\"lqd_sticky_trigger_color_hover\";i:1;s:35:\"lqd_sticky_bars_shape_border_border\";i:1;s:34:\"lqd_sticky_bars_shape_border_width\";i:1;s:34:\"lqd_sticky_bars_shape_border_color\";i:1;s:49:\"lqd_sticky_bars_shape_background_hover_background\";i:1;s:44:\"lqd_sticky_bars_shape_background_hover_color\";i:1;s:41:\"lqd_sticky_bars_shape_border_hover_border\";i:1;s:40:\"lqd_sticky_bars_shape_border_hover_color\";i:1;}s:18:\"dark_style_section\";a:2:{s:38:\"dark_modal_inner_background_background\";i:2;s:33:\"dark_modal_inner_background_color\";i:2;}s:18:\"icon_style_section\";a:1:{s:17:\"trigger_icon_size\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:3;s:24:\"lqd_inview_keyframes_all\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:14:\"_section_style\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:21:\"_offset_orientation_v\";i:1;s:13:\"_offset_y_end\";i:1;}}}}s:13:\"lqd_site_logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:10:\"_flex_size\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}}s:7:\"content\";a:1:{s:15:\"general_section\";a:4:{s:7:\"uselogo\";i:1;s:5:\"image\";i:1;s:13:\"usestickylogo\";i:1;s:12:\"sticky_image\";i:1;}}}}s:8:\"lqd-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"general_section\";a:6:{s:9:\"menu_slug\";i:1;s:11:\"custom_menu\";i:1;s:11:\"localscroll\";i:1;s:15:\"mobile_dropdown\";i:1;s:33:\"mobile_dropdown_breakpoint_tablet\";i:1;s:18:\"localscroll_offset\";i:1;}s:23:\"trigger_general_section\";a:1:{s:22:\"trigger_text_placement\";i:1;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}}s:5:\"style\";a:6:{s:21:\"ul_tops_style_section\";a:2:{s:10:\"ul_top_gap\";i:1;s:28:\"ul_top_background_background\";i:1;}s:21:\"li_tops_style_section\";a:3:{s:12:\"li_top_color\";i:1;s:18:\"li_top_color_hover\";i:1;s:19:\"li_top_color_active\";i:1;}s:24:\"lqd_sticky_style_section\";a:3:{s:23:\"lqd_sticky_li_top_color\";i:1;s:29:\"lqd_sticky_li_top_color_hover\";i:1;s:30:\"lqd_sticky_li_top_color_active\";i:1;}s:21:\"trigger_style_section\";a:1:{s:13:\"trigger_color\";i:1;}s:30:\"mobile_dropdown_styles_section\";a:1:{s:36:\"mobile_dropdown_orientation_h_tablet\";i:1;}s:26:\"lqd_sticky_trigger_section\";a:1:{s:24:\"lqd_sticky_trigger_color\";i:1;}}}}s:19:\"lqd-scroll-progress\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:7:\"effects\";a:1:{s:18:\"lqd_adaptive_color\";i:1;}}s:5:\"style\";a:2:{s:19:\"links_style_section\";a:1:{s:10:\"link_color\";i:1;}s:18:\"dark_style_section\";a:1:{s:15:\"dark_link_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:4:{s:9:\"_position\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:9:\"_offset_x\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translate_popover\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:35:\"_transform_translateY_effect_laptop\";i:1;s:41:\"_transform_translateY_effect_tablet_extra\";i:1;s:35:\"_transform_translateY_effect_tablet\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:10:\"lqd-button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"button_section2\";a:4:{s:5:\"title\";i:2;s:13:\"selected_icon\";i:1;s:14:\"icon_placement\";i:1;s:11:\"button_link\";i:1;}s:14:\"button_effects\";a:1:{s:23:\"lqd_outline_glow_effect\";i:1;}}s:5:\"style\";a:3:{s:15:\"lqd_glow_styles\";a:2:{s:14:\"lqd_glow_width\";i:1;s:22:\"lqd_glow_color_primary\";i:1;}s:20:\"button_style_section\";a:8:{s:7:\"padding\";i:2;s:20:\"border_radius_normal\";i:2;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:12:\"color_normal\";i:1;s:41:\"background_normal_liquid_background_items\";i:1;s:40:\"background_hover_liquid_background_items\";i:1;s:11:\"color_hover\";i:1;}s:25:\"button_icon_style_section\";a:2:{s:16:\"button_icon_size\";i:1;s:18:\"button_icon_margin\";i:1;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:2;s:24:\"lqd_inview_keyframes_all\";i:2;}s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:9:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:1;}}}}}s:7:\"wp-page\";a:16:{s:8:\"lqd-text\";a:2:{s:5:\"count\";i:94;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:21:\"section_section_title\";a:4:{s:16:\"lqd_text_content\";i:94;s:12:\"lqd_text_tag\";i:62;s:19:\"lqd_text_split_type\";i:45;s:17:\"block_level_spans\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:18:\"lqd_text_alignment\";i:13;s:14:\"lqd_text_color\";i:30;s:16:\"lqd_text_opacity\";i:8;s:30:\"lqd_text_typography_typography\";i:9;s:29:\"lqd_text_typography_font_size\";i:7;s:31:\"lqd_text_typography_line_height\";i:7;s:31:\"lqd_text_typography_font_family\";i:2;s:31:\"lqd_text_typography_font_weight\";i:2;s:32:\"lqd_text_typography_word_spacing\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:33;s:14:\"_element_width\";i:36;s:21:\"_element_custom_width\";i:30;s:21:\"_element_width_mobile\";i:33;s:6:\"_title\";i:1;s:8:\"_padding\";i:9;s:10:\"_flex_size\";i:6;}s:22:\"lqd_animations_section\";a:10:{s:26:\"lqd_parallax_keyframes_all\";i:94;s:24:\"lqd_inview_keyframes_all\";i:94;s:10:\"lqd_inview\";i:63;s:27:\"lqd_inview_settings_stagger\";i:18;s:31:\"lqd_inview_settings_start_delay\";i:6;s:18:\"lqd_inview_trigger\";i:5;s:14:\"lqd_aa_opacity\";i:6;s:21:\"lqd_aa_opacity_normal\";i:6;s:20:\"lqd_aa_opacity_hover\";i:6;s:25:\"lqd_aa_opacity_transition\";i:6;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_radius\";i:7;s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:178;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:24:\"section_layout_container\";a:10:{s:14:\"flex_direction\";i:130;s:20:\"flex_justify_content\";i:75;s:16:\"flex_align_items\";i:47;s:9:\"flex_wrap\";i:63;s:5:\"width\";i:81;s:13:\"content_width\";i:97;s:8:\"flex_gap\";i:36;s:10:\"min_height\";i:8;s:11:\"boxed_width\";i:1;s:9:\"grid_gaps\";i:1;}s:33:\"lqd_dark_container_layout_section\";a:1:{s:24:\"lqd_section_color_scheme\";i:9;}s:33:\"section_layout_additional_options\";a:1:{s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"section_layout\";a:8:{s:6:\"margin\";i:32;s:7:\"padding\";i:81;s:10:\"_flex_size\";i:14;s:7:\"z_index\";i:10;s:11:\"_element_id\";i:3;s:8:\"position\";i:4;s:13:\"_offset_x_end\";i:4;s:9:\"_offset_y\";i:4;}s:22:\"lqd_animations_section\";a:6:{s:26:\"lqd_parallax_keyframes_all\";i:178;s:24:\"lqd_inview_keyframes_all\";i:178;s:10:\"lqd_inview\";i:43;s:31:\"lqd_inview_settings_start_delay\";i:20;s:18:\"lqd_aa_perspective\";i:6;s:18:\"lqd_inview_trigger\";i:1;}s:19:\"_section_responsive\";a:5:{s:12:\"hide_desktop\";i:3;s:11:\"hide_laptop\";i:3;s:17:\"hide_tablet_extra\";i:3;s:11:\"hide_tablet\";i:4;s:11:\"hide_mobile\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translateY_effect\";i:1;s:34:\"_transform_translateY_effect_hover\";i:1;}}s:5:\"style\";a:3:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:15;s:12:\"border_width\";i:15;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}s:18:\"section_background\";a:20:{s:16:\"background_image\";i:23;s:19:\"background_position\";i:10;s:15:\"background_size\";i:14;s:21:\"background_video_link\";i:3;s:22:\"background_video_start\";i:3;s:20:\"background_video_end\";i:3;s:25:\"background_play_on_mobile\";i:3;s:25:\"background_video_fallback\";i:3;s:35:\"background_slideshow_slide_duration\";i:3;s:30:\"background_slideshow_ken_burns\";i:3;s:15:\"background_xpos\";i:2;s:17:\"background_repeat\";i:6;s:19:\"background_bg_width\";i:14;s:21:\"background_background\";i:16;s:21:\"background_attachment\";i:2;s:27:\"background_hover_background\";i:12;s:22:\"background_hover_color\";i:12;s:27:\"background_hover_transition\";i:16;s:16:\"background_color\";i:5;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:17:{s:24:\"background_overlay_image\";i:16;s:26:\"background_overlay_opacity\";i:15;s:23:\"background_overlay_size\";i:15;s:27:\"background_overlay_bg_width\";i:15;s:29:\"background_overlay_background\";i:14;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:18:\"overlay_blend_mode\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:16:\"css_filters_blur\";i:1;s:22:\"css_filters_brightness\";i:1;s:20:\"css_filters_contrast\";i:1;s:20:\"css_filters_saturate\";i:1;s:15:\"css_filters_hue\";i:1;s:29:\"background_overlay_attachment\";i:5;s:22:\"css_filters_css_filter\";i:1;}}}}s:9:\"lqd-image\";a:2:{s:5:\"count\";i:41;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"general_section\";a:1:{s:5:\"image\";i:41;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:7:{s:14:\"_element_width\";i:16;s:21:\"_element_custom_width\";i:15;s:9:\"_position\";i:10;s:21:\"_offset_orientation_h\";i:10;s:13:\"_offset_x_end\";i:5;s:8:\"_z_index\";i:10;s:7:\"_margin\";i:1;}s:22:\"lqd_animations_section\";a:8:{s:26:\"lqd_parallax_keyframes_all\";i:41;s:24:\"lqd_inview_keyframes_all\";i:41;s:12:\"lqd_parallax\";i:5;s:10:\"blend_mode\";i:8;s:10:\"lqd_inview\";i:8;s:31:\"lqd_inview_settings_start_delay\";i:4;s:20:\"lqd_aa_opacity_hover\";i:20;s:25:\"lqd_aa_opacity_transition\";i:20;}s:18:\"_section_transform\";a:3:{s:30:\"_transform_scale_popover_hover\";i:20;s:29:\"_transform_scale_effect_hover\";i:20;s:27:\"_transform_transition_hover\";i:20;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:5;s:6:\"height\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"lqd-box\";a:2:{s:5:\"count\";i:84;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:15:\"general_section\";a:12:{s:5:\"title\";i:84;s:11:\"description\";i:84;s:9:\"icon_list\";i:84;s:12:\"subtitle_tag\";i:15;s:13:\"selected_icon\";i:81;s:9:\"title_tag\";i:52;s:8:\"subtitle\";i:12;s:8:\"ib_title\";i:5;s:11:\"show_button\";i:1;s:16:\"ib_selected_icon\";i:5;s:14:\"ib_button_link\";i:1;s:4:\"link\";i:1;}s:29:\"positioning_alignment_section\";a:4:{s:16:\"separate_content\";i:63;s:22:\"separate_content_parts\";i:15;s:26:\"separate_content_placement\";i:63;s:10:\"text_align\";i:16;}s:17:\"ib_button_effects\";a:3:{s:22:\"ib_button_hover_effect\";i:5;s:21:\"ib_button_icon_effect\";i:5;s:27:\"ib_button_icon_hover_effect\";i:5;}s:15:\"effects_section\";a:1:{s:17:\"icon_effect_hover\";i:16;}}s:8:\"advanced\";a:4:{s:22:\"lqd_animations_section\";a:4:{s:26:\"lqd_parallax_keyframes_all\";i:84;s:24:\"lqd_inview_keyframes_all\";i:84;s:10:\"lqd_inview\";i:19;s:31:\"lqd_inview_settings_start_delay\";i:10;}s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:15;s:14:\"_element_width\";i:83;s:21:\"_element_custom_width\";i:83;s:21:\"_element_width_mobile\";i:15;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:10;s:13:\"_border_width\";i:15;}s:18:\"_section_transform\";a:4:{s:34:\"_transform_translateY_effect_hover\";i:48;s:30:\"_transform_scale_popover_hover\";i:64;s:29:\"_transform_scale_effect_hover\";i:64;s:27:\"_transform_transition_hover\";i:64;}}s:5:\"style\";a:5:{s:19:\"icons_style_section\";a:3:{s:14:\"icon_font_size\";i:36;s:11:\"icon_margin\";i:84;s:10:\"icon_color\";i:16;}s:20:\"titles_style_section\";a:5:{s:12:\"title_margin\";i:20;s:28:\"title_typography_font_family\";i:19;s:26:\"title_typography_font_size\";i:19;s:28:\"title_typography_line_height\";i:19;s:28:\"title_typography_font_weight\";i:4;}s:23:\"subtitles_style_section\";a:1:{s:15:\"subtitle_margin\";i:15;}s:26:\"descriptions_style_section\";a:1:{s:18:\"description_margin\";i:5;}s:28:\"ib_button_icon_style_section\";a:1:{s:19:\"ib_button_icon_size\";i:5;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:5;s:24:\"lqd_inview_keyframes_all\";i:5;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:16:\"_flex_align_self\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:1;s:5:\"space\";i:1;s:6:\"height\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:3;s:24:\"lqd_inview_keyframes_all\";i:3;}}}}s:7:\"metform\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:10:\"mf_form_id\";i:4;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:3:{s:26:\"lqd_parallax_keyframes_all\";i:4;s:24:\"lqd_inview_keyframes_all\";i:4;s:10:\"lqd_inview\";i:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:2;s:24:\"lqd_inview_keyframes_all\";i:2;}}}}s:10:\"lqd-button\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"button_section2\";a:9:{s:27:\"lqd_predefined_style_button\";i:1;s:5:\"title\";i:17;s:11:\"button_link\";i:12;s:5:\"align\";i:9;s:13:\"selected_icon\";i:16;s:9:\"link_type\";i:5;s:19:\"local_scroll_offset\";i:6;s:13:\"button_expand\";i:9;s:14:\"icon_placement\";i:1;}s:14:\"button_effects\";a:10:{s:19:\"button_hover_effect\";i:14;s:23:\"lqd_outline_glow_effect\";i:1;s:24:\"button_icon_hover_effect\";i:16;s:25:\"hover_icon_custom_rotateZ\";i:9;s:25:\"button_icon_effect_custom\";i:3;s:18:\"button_icon_effect\";i:7;s:19:\"hover_icon_custom_x\";i:2;s:25:\"hover_icon_custom_opacity\";i:2;s:18:\"button_text_effect\";i:1;s:24:\"button_text_hover_effect\";i:1;}}s:5:\"style\";a:2:{s:20:\"button_style_section\";a:14:{s:16:\"button_dimension\";i:1;s:7:\"padding\";i:10;s:12:\"color_normal\";i:11;s:41:\"background_normal_liquid_background_items\";i:1;s:20:\"border_radius_normal\";i:1;s:21:\"typography_typography\";i:9;s:20:\"typography_font_size\";i:9;s:40:\"background_hover_liquid_background_items\";i:9;s:20:\"border_normal_border\";i:9;s:11:\"color_hover\";i:10;s:19:\"border_normal_width\";i:9;s:19:\"border_normal_color\";i:9;s:19:\"border_hover_border\";i:9;s:18:\"border_hover_color\";i:9;}s:25:\"button_icon_style_section\";a:7:{s:18:\"button_icon_margin\";i:10;s:16:\"button_icon_size\";i:16;s:46:\"icon_background_normal_liquid_background_items\";i:1;s:21:\"button_icon_dimension\";i:1;s:17:\"icon_color_normal\";i:1;s:25:\"icon_border_radius_normal\";i:1;s:16:\"icon_color_hover\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:9;s:21:\"_element_custom_width\";i:9;s:21:\"_element_width_mobile\";i:9;}s:22:\"lqd_animations_section\";a:5:{s:26:\"lqd_parallax_keyframes_all\";i:17;s:24:\"lqd_inview_keyframes_all\";i:17;s:10:\"lqd_inview\";i:7;s:31:\"lqd_inview_settings_start_delay\";i:2;s:18:\"lqd_inview_trigger\";i:2;}s:19:\"_section_responsive\";a:4:{s:12:\"hide_desktop\";i:1;s:11:\"hide_laptop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translate_popover\";i:9;s:28:\"_transform_translateY_effect\";i:9;s:34:\"_transform_translate_popover_hover\";i:9;s:34:\"_transform_translateY_effect_hover\";i:9;s:27:\"_transform_transition_hover\";i:9;s:35:\"_transform_translateY_effect_mobile\";i:9;}}}}s:13:\"lqd-accordion\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"items_section\";a:2:{s:11:\"active_item\";i:5;s:5:\"items\";i:9;}s:20:\"trigger_icon_section\";a:4:{s:19:\"trigger_icon_closed\";i:9;s:19:\"trigger_icon_opened\";i:9;s:21:\"trigger_icon_position\";i:5;s:43:\"enable_trigger_icon_visible_on_hover_active\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:9;s:21:\"_element_custom_width\";i:5;s:21:\"_element_width_mobile\";i:5;s:7:\"_margin\";i:4;}s:22:\"lqd_animations_section\";a:4:{s:26:\"lqd_parallax_keyframes_all\";i:9;s:24:\"lqd_inview_keyframes_all\";i:9;s:10:\"lqd_inview\";i:9;s:31:\"lqd_inview_settings_start_delay\";i:5;}}s:5:\"style\";a:4:{s:22:\"triggers_style_section\";a:7:{s:15:\"trigger_padding\";i:9;s:21:\"trigger_border_border\";i:5;s:20:\"trigger_border_width\";i:5;s:20:\"trigger_border_color\";i:5;s:19:\"trigger_color_hover\";i:5;s:20:\"trigger_color_active\";i:5;s:13:\"trigger_color\";i:1;}s:27:\"trigger_icons_style_section\";a:7:{s:19:\"trigger_icon_margin\";i:5;s:18:\"trigger_icon_color\";i:5;s:24:\"trigger_icon_color_hover\";i:1;s:23:\"trigger_icon_dimensions\";i:4;s:34:\"trigger_icon_background_background\";i:4;s:29:\"trigger_icon_background_color\";i:4;s:26:\"trigger_icon_border_radius\";i:4;}s:22:\"contents_style_section\";a:3:{s:13:\"content_color\";i:5;s:15:\"content_padding\";i:9;s:29:\"content_typography_typography\";i:1;}s:19:\"items_style_section\";a:6:{s:10:\"item_color\";i:1;s:16:\"item_color_hover\";i:1;s:17:\"item_color_active\";i:1;s:18:\"item_border_border\";i:4;s:17:\"item_border_width\";i:4;s:17:\"item_border_color\";i:4;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:11;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:4:{s:26:\"lqd_parallax_keyframes_all\";i:11;s:24:\"lqd_inview_keyframes_all\";i:11;s:10:\"lqd_inview\";i:11;s:31:\"lqd_inview_settings_start_delay\";i:11;}}}}s:9:\"lqd-stack\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"general_section\";a:3:{s:5:\"items\";i:3;s:15:\"adaptive_height\";i:3;s:16:\"slides_indicator\";i:1;}s:24:\"slides_indicator_section\";a:2:{s:28:\"slides_indicator_placement_h\";i:3;s:29:\"slides_indicator_offset_x_end\";i:3;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:3;s:24:\"lqd_inview_keyframes_all\";i:3;}s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:3;}}}}s:12:\"lqd-carousel\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"general_section\";a:6:{s:5:\"cells\";i:11;s:11:\"wrap_around\";i:11;s:11:\"nav_buttons\";i:8;s:9:\"draggable\";i:4;s:19:\"connected_carousels\";i:4;s:15:\"pagination_dots\";i:4;}s:23:\"pagination_dots_section\";a:1:{s:10:\"dots_align\";i:4;}s:18:\"navigation_section\";a:4:{s:13:\"nav_placement\";i:3;s:9:\"nav_align\";i:3;s:17:\"nav_orientation_h\";i:3;s:12:\"nav_offset_y\";i:3;}}s:5:\"style\";a:3:{s:19:\"cells_style_section\";a:6:{s:10:\"cell_width\";i:11;s:11:\"cell_margin\";i:11;s:12:\"cell_padding\";i:3;s:18:\"cell_border_border\";i:3;s:17:\"cell_border_width\";i:3;s:17:\"cell_border_color\";i:3;}s:19:\"dotss_style_section\";a:10:{s:8:\"dots_gap\";i:4;s:15:\"dots_dimensions\";i:4;s:11:\"dots_margin\";i:4;s:26:\"dots_background_background\";i:4;s:21:\"dots_background_color\";i:4;s:18:\"dots_border_radius\";i:4;s:32:\"dots_background_hover_background\";i:4;s:27:\"dots_background_hover_color\";i:4;s:33:\"dots_background_active_background\";i:4;s:28:\"dots_background_active_color\";i:4;}s:18:\"navs_style_section\";a:7:{s:14:\"nav_dimensions\";i:3;s:9:\"nav_color\";i:3;s:17:\"nav_border_radius\";i:3;s:15:\"nav_color_hover\";i:3;s:31:\"nav_background_hover_background\";i:3;s:26:\"nav_background_hover_color\";i:3;s:7:\"nav_gap\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:4;s:21:\"_element_custom_width\";i:8;s:10:\"_flex_size\";i:4;s:21:\"_element_width_mobile\";i:4;}s:22:\"lqd_animations_section\";a:4:{s:26:\"lqd_parallax_keyframes_all\";i:11;s:24:\"lqd_inview_keyframes_all\";i:11;s:10:\"lqd_inview\";i:11;s:31:\"lqd_inview_settings_start_delay\";i:4;}}}}s:11:\"lqd-counter\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"general_section\";a:5:{s:8:\"count_to\";i:9;s:20:\"dynamic_counter_list\";i:9;s:15:\"lqd_counter_tag\";i:9;s:10:\"count_from\";i:4;s:14:\"counter_suffix\";i:2;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:9;s:24:\"lqd_inview_keyframes_all\";i:9;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:14:\"_element_width\";i:6;s:21:\"_element_width_mobile\";i:6;s:21:\"_element_custom_width\";i:6;}}s:5:\"style\";a:1:{s:22:\"counters_style_section\";a:4:{s:29:\"counter_typography_typography\";i:3;s:28:\"counter_typography_font_size\";i:3;s:30:\"counter_typography_line_height\";i:3;s:13:\"counter_color\";i:6;}}}}s:14:\"lqd-posts-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"data_section\";a:1:{s:9:\"post_type\";i:1;}s:15:\"content_section\";a:1:{s:13:\"content_parts\";i:1;}}s:5:\"style\";a:3:{s:12:\"title_styles\";a:4:{s:12:\"title_margin\";i:1;s:19:\"title_border_radius\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;}s:12:\"media_styles\";a:2:{s:12:\"image_height\";i:1;s:19:\"media_border_radius\";i:1;}s:15:\"articles_styles\";a:2:{s:14:\"articles_width\";i:1;s:12:\"articles_gap\";i:1;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}}}}}s:7:\"wp-post\";a:25:{s:13:\"lqd_site_logo\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:10:\"_flex_size\";i:4;s:14:\"_element_width\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:5;s:24:\"lqd_inview_keyframes_all\";i:5;}}s:7:\"content\";a:1:{s:15:\"general_section\";a:5:{s:7:\"uselogo\";i:4;s:5:\"image\";i:5;s:13:\"usestickylogo\";i:2;s:12:\"sticky_image\";i:3;s:10:\"dark_image\";i:2;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:83;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:10:{s:13:\"content_width\";i:75;s:5:\"width\";i:41;s:14:\"flex_direction\";i:47;s:16:\"flex_align_items\";i:21;s:8:\"flex_gap\";i:20;s:11:\"boxed_width\";i:1;s:10:\"min_height\";i:5;s:20:\"flex_justify_content\";i:21;s:9:\"flex_wrap\";i:21;s:9:\"grid_gaps\";i:1;}s:33:\"section_layout_additional_options\";a:1:{s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:83;s:24:\"lqd_inview_keyframes_all\";i:83;}s:14:\"section_layout\";a:3:{s:6:\"margin\";i:20;s:7:\"padding\";i:62;s:10:\"_flex_size\";i:1;}s:44:\"lqd_sticky_container_advanced_styles_section\";a:1:{s:26:\"lqd_sticky_section_padding\";i:4;}}s:5:\"style\";a:4:{s:25:\"lqd_sticky_styles_section\";a:2:{s:34:\"lqd_sticky_container_bg_background\";i:4;s:29:\"lqd_sticky_container_bg_color\";i:4;}s:14:\"section_border\";a:5:{s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:16;s:12:\"border_width\";i:16;s:12:\"border_color\";i:13;s:13:\"border_radius\";i:15;}s:18:\"section_background\";a:7:{s:21:\"background_background\";i:13;s:16:\"background_color\";i:9;s:16:\"background_image\";i:5;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_color_b\";i:4;s:33:\"background_overlay_gradient_angle\";i:4;s:26:\"background_overlay_opacity\";i:4;s:29:\"background_overlay_color_stop\";i:1;}}}}s:8:\"lqd-menu\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"general_section\";a:8:{s:9:\"menu_slug\";i:9;s:11:\"custom_menu\";i:9;s:11:\"localscroll\";i:7;s:15:\"mobile_dropdown\";i:7;s:33:\"mobile_dropdown_breakpoint_tablet\";i:3;s:18:\"localscroll_offset\";i:4;s:39:\"mobile_dropdown_breakpoint_tablet_extra\";i:1;s:17:\"items_orientation\";i:4;}s:23:\"trigger_general_section\";a:4:{s:22:\"trigger_text_placement\";i:4;s:12:\"trigger_text\";i:4;s:12:\"trigger_type\";i:4;s:13:\"selected_icon\";i:1;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:9;s:24:\"lqd_inview_keyframes_all\";i:9;}s:14:\"_section_style\";a:2:{s:16:\"_flex_align_self\";i:1;s:10:\"_flex_size\";i:1;}}s:5:\"style\";a:12:{s:21:\"ul_tops_style_section\";a:3:{s:10:\"ul_top_gap\";i:8;s:28:\"ul_top_background_background\";i:4;s:14:\"ul_top_padding\";i:1;}s:21:\"li_tops_style_section\";a:14:{s:12:\"li_top_color\";i:9;s:18:\"li_top_color_hover\";i:8;s:19:\"li_top_color_active\";i:7;s:28:\"li_top_typography_typography\";i:4;s:27:\"li_top_typography_font_size\";i:4;s:29:\"li_top_typography_font_weight\";i:4;s:32:\"li_top_typography_letter_spacing\";i:1;s:14:\"li_top_padding\";i:5;s:28:\"li_top_background_background\";i:3;s:23:\"li_top_background_color\";i:3;s:34:\"li_top_background_hover_background\";i:3;s:29:\"li_top_background_hover_color\";i:3;s:35:\"li_top_background_active_background\";i:3;s:30:\"li_top_background_active_color\";i:3;}s:24:\"lqd_sticky_style_section\";a:3:{s:23:\"lqd_sticky_li_top_color\";i:4;s:29:\"lqd_sticky_li_top_color_hover\";i:3;s:30:\"lqd_sticky_li_top_color_active\";i:3;}s:21:\"trigger_style_section\";a:8:{s:13:\"trigger_color\";i:4;s:29:\"trigger_typography_typography\";i:1;s:30:\"trigger_typography_font_family\";i:1;s:28:\"trigger_typography_font_size\";i:1;s:30:\"trigger_typography_font_weight\";i:1;s:33:\"trigger_typography_letter_spacing\";i:1;s:19:\"trigger_color_hover\";i:1;s:20:\"trigger_color_active\";i:1;}s:30:\"mobile_dropdown_styles_section\";a:1:{s:36:\"mobile_dropdown_orientation_h_tablet\";i:4;}s:26:\"lqd_sticky_trigger_section\";a:1:{s:24:\"lqd_sticky_trigger_color\";i:4;}s:18:\"dark_style_section\";a:6:{s:17:\"dark_li_top_color\";i:2;s:23:\"dark_li_top_color_hover\";i:2;s:24:\"dark_li_top_color_active\";i:2;s:33:\"dark_ul_top_background_background\";i:1;s:35:\"dark_dropdown_background_background\";i:1;s:30:\"dark_dropdown_background_color\";i:1;}s:18:\"icon_style_section\";a:1:{s:17:\"trigger_icon_size\";i:1;}s:28:\"dropdown_links_style_section\";a:1:{s:25:\"dropdown_link_color_hover\";i:1;}s:20:\"dark_trigger_section\";a:1:{s:18:\"dark_trigger_color\";i:1;}s:20:\"badges_style_section\";a:4:{s:11:\"badge_color\";i:1;s:27:\"badge_background_background\";i:1;s:22:\"badge_background_color\";i:1;s:19:\"badge_border_radius\";i:1;}s:23:\"dropdowns_style_section\";a:5:{s:12:\"dropdown_gap\";i:1;s:14:\"dropdown_width\";i:1;s:16:\"dropdown_padding\";i:1;s:19:\"dropdown_position_h\";i:1;s:19:\"dropdown_position_v\";i:1;}}}}s:10:\"lqd-button\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"button_section2\";a:8:{s:27:\"lqd_predefined_style_button\";i:2;s:5:\"title\";i:7;s:11:\"button_link\";i:3;s:13:\"selected_icon\";i:2;s:14:\"icon_placement\";i:1;s:5:\"align\";i:3;s:13:\"button_expand\";i:3;s:19:\"justify_btn_content\";i:3;}s:14:\"button_effects\";a:2:{s:19:\"button_hover_effect\";i:2;s:23:\"lqd_outline_glow_effect\";i:2;}}s:5:\"style\";a:4:{s:20:\"button_style_section\";a:11:{s:16:\"button_dimension\";i:3;s:7:\"padding\";i:6;s:12:\"color_normal\";i:6;s:41:\"background_normal_liquid_background_items\";i:6;s:20:\"border_radius_normal\";i:6;s:19:\"border_normal_color\";i:1;s:40:\"background_hover_liquid_background_items\";i:5;s:18:\"border_hover_color\";i:1;s:11:\"color_hover\";i:4;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;}s:25:\"button_icon_style_section\";a:2:{s:16:\"button_icon_size\";i:2;s:18:\"button_icon_margin\";i:2;}s:24:\"lqd_sticky_style_section\";a:3:{s:16:\"lqd_sticky_color\";i:1;s:23:\"lqd_sticky_border_color\";i:1;s:22:\"lqd_sticky_color_hover\";i:1;}s:18:\"dark_style_section\";a:2:{s:10:\"dark_color\";i:1;s:16:\"dark_color_hover\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:13:\"_offset_x_end\";i:1;s:21:\"_offset_orientation_v\";i:1;s:13:\"_offset_y_end\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:7;s:24:\"lqd_inview_keyframes_all\";i:7;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:4;}}}}s:9:\"lqd-modal\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:15:\"general_section\";a:2:{s:10:\"modal_type\";i:6;s:5:\"modal\";i:6;}s:23:\"trigger_general_section\";a:4:{s:12:\"trigger_type\";i:6;s:12:\"trigger_text\";i:6;s:13:\"selected_icon\";i:4;s:9:\"grid_size\";i:1;}s:25:\"modal_positioning_section\";a:5:{s:19:\"modal_orientation_h\";i:4;s:18:\"modal_offset_x_end\";i:4;s:28:\"modal_close_btn_offset_x_end\";i:4;s:29:\"modal_close_btn_orientation_h\";i:1;s:24:\"modal_close_btn_offset_x\";i:1;}s:15:\"trigger_effects\";a:1:{s:20:\"trigger_hover_effect\";i:4;}}s:5:\"style\";a:7:{s:21:\"trigger_style_section\";a:11:{s:13:\"trigger_color\";i:6;s:24:\"trigger_background_color\";i:2;s:29:\"trigger_background_background\";i:2;s:21:\"trigger_border_radius\";i:2;s:35:\"trigger_background_hover_background\";i:2;s:30:\"trigger_background_hover_color\";i:2;s:36:\"trigger_background_active_background\";i:2;s:31:\"trigger_background_active_color\";i:3;s:20:\"trigger_color_active\";i:2;s:19:\"trigger_color_hover\";i:2;s:15:\"trigger_padding\";i:1;}s:18:\"icon_style_section\";a:1:{s:17:\"trigger_icon_size\";i:4;}s:24:\"bars_shape_style_section\";a:19:{s:20:\"bars_shape_dimension\";i:5;s:32:\"bars_shape_background_background\";i:4;s:27:\"bars_shape_background_color\";i:3;s:24:\"bars_shape_border_radius\";i:5;s:38:\"bars_shape_background_hover_background\";i:5;s:33:\"bars_shape_background_hover_color\";i:5;s:39:\"bars_shape_background_active_background\";i:3;s:34:\"bars_shape_background_active_color\";i:3;s:24:\"bars_shape_border_border\";i:1;s:23:\"bars_shape_border_width\";i:1;s:23:\"bars_shape_border_color\";i:1;s:30:\"bars_shape_border_hover_border\";i:1;s:29:\"bars_shape_border_hover_color\";i:1;s:31:\"bars_shape_border_active_border\";i:1;s:30:\"bars_shape_border_active_width\";i:1;s:30:\"bars_shape_border_active_color\";i:1;s:44:\"bars_shape_box_shadow_active_box_shadow_type\";i:1;s:39:\"bars_shape_box_shadow_active_box_shadow\";i:1;s:31:\"bars_shape_border_radius_active\";i:1;}s:26:\"modal_inners_style_section\";a:14:{s:33:\"modal_inner_background_background\";i:6;s:28:\"modal_inner_background_color\";i:6;s:22:\"modal_inner_dimensions\";i:4;s:19:\"modal_inner_padding\";i:3;s:25:\"modal_inner_border_radius\";i:4;s:38:\"modal_inner_box_shadow_box_shadow_type\";i:4;s:33:\"modal_inner_box_shadow_box_shadow\";i:4;s:17:\"modal_inner_width\";i:4;s:18:\"modal_inner_margin\";i:3;s:28:\"modal_inner_background_image\";i:1;s:27:\"modal_inner_background_size\";i:1;s:31:\"modal_inner_background_bg_width\";i:1;s:33:\"modal_inner_typography_typography\";i:1;s:32:\"modal_inner_typography_font_size\";i:1;}s:18:\"dark_style_section\";a:2:{s:38:\"dark_modal_inner_background_background\";i:4;s:33:\"dark_modal_inner_background_color\";i:4;}s:20:\"dark_trigger_section\";a:8:{s:18:\"dark_trigger_color\";i:2;s:34:\"dark_trigger_background_background\";i:1;s:29:\"dark_trigger_background_color\";i:1;s:40:\"dark_trigger_background_hover_background\";i:1;s:35:\"dark_trigger_background_hover_color\";i:1;s:29:\"dark_bars_shape_border_border\";i:1;s:28:\"dark_bars_shape_border_width\";i:1;s:28:\"dark_bars_shape_border_color\";i:1;}s:26:\"lqd_sticky_trigger_section\";a:9:{s:24:\"lqd_sticky_trigger_color\";i:1;s:30:\"lqd_sticky_trigger_color_hover\";i:1;s:35:\"lqd_sticky_bars_shape_border_border\";i:1;s:34:\"lqd_sticky_bars_shape_border_width\";i:1;s:34:\"lqd_sticky_bars_shape_border_color\";i:1;s:49:\"lqd_sticky_bars_shape_background_hover_background\";i:1;s:44:\"lqd_sticky_bars_shape_background_hover_color\";i:1;s:41:\"lqd_sticky_bars_shape_border_hover_border\";i:1;s:40:\"lqd_sticky_bars_shape_border_hover_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:5:{s:9:\"_position\";i:3;s:21:\"_offset_orientation_h\";i:4;s:13:\"_offset_x_end\";i:3;s:21:\"_offset_orientation_v\";i:4;s:13:\"_offset_y_end\";i:3;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:6;s:24:\"lqd_inview_keyframes_all\";i:6;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:19:\"lqd-scroll-progress\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:7:\"effects\";a:1:{s:18:\"lqd_adaptive_color\";i:3;}}s:5:\"style\";a:2:{s:19:\"links_style_section\";a:1:{s:10:\"link_color\";i:3;}s:18:\"dark_style_section\";a:1:{s:15:\"dark_link_color\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:9:\"_position\";i:3;s:13:\"_offset_x_end\";i:3;s:9:\"_offset_y\";i:3;s:9:\"_offset_x\";i:2;s:21:\"_offset_orientation_h\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:3;s:24:\"lqd_inview_keyframes_all\";i:3;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translate_popover\";i:3;s:28:\"_transform_translateY_effect\";i:3;s:35:\"_transform_translateY_effect_laptop\";i:3;s:41:\"_transform_translateY_effect_tablet_extra\";i:3;s:35:\"_transform_translateY_effect_tablet\";i:3;s:35:\"_transform_translateY_effect_mobile\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:3;}}}}s:8:\"mf-email\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:4:{s:21:\"mf_input_label_status\";i:2;s:20:\"mf_input_placeholder\";i:4;s:13:\"mf_input_name\";i:1;s:14:\"mf_input_label\";i:1;}s:16:\"settings_section\";a:1:{s:17:\"mf_input_required\";i:3;}}s:5:\"style\";a:4:{s:13:\"label_section\";a:9:{s:43:\"mf_input_warning_text_typography_typography\";i:2;s:42:\"mf_input_warning_text_typography_font_size\";i:2;s:20:\"mf_input_label_color\";i:1;s:36:\"mf_input_label_typography_typography\";i:1;s:35:\"mf_input_label_typography_font_size\";i:1;s:37:\"mf_input_label_typography_font_weight\";i:1;s:37:\"mf_input_label_typography_line_height\";i:1;s:38:\"mf_input_label_typography_word_spacing\";i:1;s:21:\"mf_input_label_margin\";i:2;}s:13:\"input_section\";a:12:{s:16:\"mf_input_padding\";i:3;s:22:\"mf_input_border_border\";i:4;s:30:\"mf_input_background_background\";i:3;s:25:\"mf_input_background_color\";i:3;s:29:\"mf_input_typgraphy_typography\";i:1;s:28:\"mf_input_typgraphy_font_size\";i:1;s:30:\"mf_input_typgraphy_font_weight\";i:1;s:30:\"mf_input_typgraphy_line_height\";i:1;s:31:\"mf_input_typgraphy_word_spacing\";i:1;s:22:\"mf_input_border_radius\";i:1;s:21:\"mf_input_border_width\";i:1;s:21:\"mf_input_border_color\";i:1;}s:21:\"error_message_section\";a:3:{s:24:\"mf_error_message_padding\";i:1;s:38:\"mf_error_message_typography_typography\";i:1;s:37:\"mf_error_message_typography_font_size\";i:1;}s:19:\"placeholder_section\";a:5:{s:43:\"mf_input_place_holder_typography_typography\";i:2;s:42:\"mf_input_place_holder_typography_font_size\";i:1;s:44:\"mf_input_place_holder_typography_font_weight\";i:1;s:44:\"mf_input_place_holder_typography_line_height\";i:1;s:45:\"mf_input_place_holder_typography_word_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:3;s:21:\"_element_width_mobile\";i:2;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:4;s:24:\"lqd_inview_keyframes_all\";i:4;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}}}s:7:\"mf-date\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:21:\"mf_input_label_status\";i:1;s:20:\"mf_input_placeholder\";i:1;}s:16:\"settings_section\";a:2:{s:19:\"mf_input_range_date\";i:1;s:17:\"mf_input_required\";i:1;}}s:5:\"style\";a:3:{s:13:\"input_section\";a:5:{s:16:\"mf_input_padding\";i:1;s:25:\"mf_input_background_color\";i:1;s:22:\"mf_input_border_border\";i:1;s:21:\"mf_input_border_width\";i:1;s:21:\"mf_input_border_color\";i:1;}s:19:\"placeholder_section\";a:1:{s:26:\"mf_input_placeholder_color\";i:1;}s:13:\"label_section\";a:2:{s:43:\"mf_input_warning_text_typography_typography\";i:1;s:42:\"mf_input_warning_text_typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}}}}s:9:\"mf-select\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:3:{s:21:\"mf_input_label_status\";i:1;s:20:\"mf_input_placeholder\";i:1;s:13:\"mf_input_list\";i:1;}s:16:\"settings_section\";a:1:{s:17:\"mf_input_required\";i:1;}}s:5:\"style\";a:1:{s:13:\"input_section\";a:2:{s:16:\"mf_input_padding\";i:1;s:22:\"mf_input_border_border\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}}}}s:9:\"mf-button\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"mf_btn_section_content\";a:5:{s:12:\"mf_btn_align\";i:4;s:19:\"mf_btn_align_tablet\";i:2;s:19:\"mf_btn_align_mobile\";i:2;s:11:\"mf_btn_text\";i:3;s:19:\"mf_btn_align_laptop\";i:1;}}s:5:\"style\";a:3:{s:20:\"mf_btn_section_style\";a:7:{s:19:\"mf_btn_text_padding\";i:2;s:26:\"mf_btn_bg_color_background\";i:4;s:32:\"mf_btn_bg_hover_color_background\";i:4;s:28:\"mf_btn_typography_typography\";i:1;s:29:\"mf_btn_typography_font_weight\";i:1;s:21:\"mf_btn_bg_color_color\";i:1;s:18:\"mf_btn_hover_color\";i:1;}s:24:\"mf_btn_border_style_tabs\";a:1:{s:20:\"mf_btn_border_radius\";i:2;}s:23:\"mf_btn_box_shadow_style\";a:2:{s:39:\"mf_btn_box_shadow_group_box_shadow_type\";i:4;s:34:\"mf_btn_box_shadow_group_box_shadow\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:4;s:21:\"_element_custom_width\";i:2;s:21:\"_element_width_tablet\";i:1;s:16:\"_flex_align_self\";i:1;s:21:\"_element_width_mobile\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:4;s:24:\"lqd_inview_keyframes_all\";i:4;}s:15:\"_section_border\";a:2:{s:22:\"_box_shadow_box_shadow\";i:1;s:28:\"_box_shadow_hover_box_shadow\";i:1;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:4;s:21:\"_element_custom_width\";i:4;s:7:\"_margin\";i:2;s:10:\"_flex_size\";i:2;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:4;s:24:\"lqd_inview_keyframes_all\";i:4;}s:24:\"lqd_dark_colors__section\";a:2:{s:13:\"lqd_dark_hide\";i:2;s:13:\"lqd_dark_show\";i:2;}s:26:\"lqd_sticky_colors__section\";a:1:{s:15:\"lqd_sticky_hide\";i:1;}}}}s:16:\"mf-listing-fname\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:3:{s:21:\"mf_input_label_status\";i:1;s:14:\"mf_input_label\";i:3;s:20:\"mf_input_placeholder\";i:3;}s:16:\"settings_section\";a:3:{s:17:\"mf_input_required\";i:3;s:24:\"mf_input_validation_type\";i:3;s:19:\"mf_input_min_length\";i:3;}}s:5:\"style\";a:3:{s:13:\"input_section\";a:12:{s:16:\"mf_input_padding\";i:2;s:30:\"mf_input_background_background\";i:3;s:25:\"mf_input_background_color\";i:3;s:22:\"mf_input_border_border\";i:3;s:29:\"mf_input_typgraphy_typography\";i:1;s:28:\"mf_input_typgraphy_font_size\";i:1;s:30:\"mf_input_typgraphy_font_weight\";i:1;s:30:\"mf_input_typgraphy_line_height\";i:1;s:31:\"mf_input_typgraphy_word_spacing\";i:1;s:22:\"mf_input_border_radius\";i:1;s:21:\"mf_input_border_width\";i:1;s:21:\"mf_input_border_color\";i:1;}s:13:\"label_section\";a:9:{s:43:\"mf_input_warning_text_typography_typography\";i:1;s:42:\"mf_input_warning_text_typography_font_size\";i:1;s:20:\"mf_input_label_color\";i:1;s:36:\"mf_input_label_typography_typography\";i:1;s:35:\"mf_input_label_typography_font_size\";i:1;s:37:\"mf_input_label_typography_font_weight\";i:1;s:37:\"mf_input_label_typography_line_height\";i:1;s:38:\"mf_input_label_typography_word_spacing\";i:1;s:21:\"mf_input_label_margin\";i:2;}s:19:\"placeholder_section\";a:5:{s:43:\"mf_input_place_holder_typography_typography\";i:2;s:42:\"mf_input_place_holder_typography_font_size\";i:1;s:44:\"mf_input_place_holder_typography_font_weight\";i:1;s:44:\"mf_input_place_holder_typography_line_height\";i:1;s:45:\"mf_input_place_holder_typography_word_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:3;s:24:\"lqd_inview_keyframes_all\";i:3;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;s:21:\"_element_width_mobile\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}}}s:11:\"mf-textarea\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:4:{s:21:\"mf_input_label_status\";i:1;s:13:\"mf_input_name\";i:1;s:20:\"mf_input_placeholder\";i:3;s:14:\"mf_input_label\";i:2;}s:16:\"settings_section\";a:3:{s:17:\"mf_input_required\";i:2;s:24:\"mf_input_validation_type\";i:2;s:19:\"mf_input_min_length\";i:2;}}s:5:\"style\";a:3:{s:13:\"input_section\";a:12:{s:16:\"mf_input_padding\";i:2;s:30:\"mf_input_background_background\";i:3;s:25:\"mf_input_background_color\";i:3;s:22:\"mf_input_border_border\";i:3;s:29:\"mf_input_typgraphy_typography\";i:1;s:28:\"mf_input_typgraphy_font_size\";i:1;s:30:\"mf_input_typgraphy_font_weight\";i:1;s:30:\"mf_input_typgraphy_line_height\";i:1;s:31:\"mf_input_typgraphy_word_spacing\";i:1;s:22:\"mf_input_border_radius\";i:1;s:21:\"mf_input_border_width\";i:1;s:21:\"mf_input_border_color\";i:1;}s:13:\"label_section\";a:9:{s:43:\"mf_input_warning_text_typography_typography\";i:1;s:42:\"mf_input_warning_text_typography_font_size\";i:1;s:20:\"mf_input_label_color\";i:1;s:36:\"mf_input_label_typography_typography\";i:1;s:35:\"mf_input_label_typography_font_size\";i:1;s:37:\"mf_input_label_typography_font_weight\";i:1;s:37:\"mf_input_label_typography_line_height\";i:1;s:38:\"mf_input_label_typography_word_spacing\";i:1;s:21:\"mf_input_label_margin\";i:2;}s:19:\"placeholder_section\";a:5:{s:43:\"mf_input_place_holder_typography_typography\";i:2;s:42:\"mf_input_place_holder_typography_font_size\";i:1;s:44:\"mf_input_place_holder_typography_font_weight\";i:1;s:44:\"mf_input_place_holder_typography_line_height\";i:1;s:45:\"mf_input_place_holder_typography_word_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:3;s:24:\"lqd_inview_keyframes_all\";i:3;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:2;s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}}}s:8:\"lqd-text\";a:2:{s:5:\"count\";i:50;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:21:\"section_section_title\";a:2:{s:16:\"lqd_text_content\";i:50;s:12:\"lqd_text_tag\";i:50;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:30:\"lqd_text_typography_typography\";i:10;s:31:\"lqd_text_typography_font_weight\";i:9;s:18:\"lqd_text_alignment\";i:1;s:14:\"lqd_text_color\";i:2;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:50;s:24:\"lqd_inview_keyframes_all\";i:50;}s:14:\"_section_style\";a:6:{s:8:\"_padding\";i:44;s:14:\"_element_width\";i:19;s:21:\"_element_width_tablet\";i:1;s:7:\"_margin\";i:4;s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}s:7:\"metform\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:10:\"mf_form_id\";i:6;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:6;s:24:\"lqd_inview_keyframes_all\";i:6;}}}}s:7:\"lqd-box\";a:2:{s:5:\"count\";i:21;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"general_section\";a:7:{s:13:\"selected_icon\";i:9;s:5:\"title\";i:21;s:9:\"title_tag\";i:18;s:8:\"subtitle\";i:21;s:12:\"subtitle_tag\";i:18;s:11:\"description\";i:21;s:9:\"icon_list\";i:21;}s:29:\"positioning_alignment_section\";a:11:{s:11:\"icon_inline\";i:6;s:16:\"separate_content\";i:21;s:26:\"separate_content_placement\";i:21;s:11:\"align_items\";i:18;s:10:\"text_align\";i:15;s:13:\"image_align_v\";i:3;s:22:\"separate_content_parts\";i:15;s:12:\"title_inline\";i:12;s:15:\"subtitle_inline\";i:12;s:15:\"image_placement\";i:12;s:15:\"justify_content\";i:12;}s:15:\"effects_section\";a:1:{s:17:\"icon_effect_hover\";i:6;}}s:5:\"style\";a:5:{s:19:\"icons_style_section\";a:8:{s:14:\"icon_font_size\";i:6;s:15:\"icon_dimensions\";i:6;s:11:\"icon_margin\";i:6;s:39:\"icon_background_liquid_background_items\";i:6;s:18:\"icon_border_radius\";i:6;s:45:\"icon_background_hover_liquid_background_items\";i:6;s:16:\"icon_color_hover\";i:6;s:10:\"icon_color\";i:9;}s:20:\"titles_style_section\";a:6:{s:27:\"title_typography_typography\";i:18;s:26:\"title_typography_font_size\";i:18;s:28:\"title_typography_font_weight\";i:6;s:28:\"title_typography_line_height\";i:6;s:11:\"title_color\";i:21;s:13:\"title_padding\";i:15;}s:23:\"subtitles_style_section\";a:3:{s:30:\"subtitle_typography_typography\";i:18;s:29:\"subtitle_typography_font_size\";i:18;s:14:\"subtitle_color\";i:3;}s:22:\"contents_style_section\";a:2:{s:15:\"content_padding\";i:15;s:14:\"content_margin\";i:3;}s:26:\"descriptions_style_section\";a:3:{s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:17:\"description_color\";i:3;}}s:8:\"advanced\";a:3:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:21;s:24:\"lqd_inview_keyframes_all\";i:21;}s:14:\"_section_style\";a:5:{s:16:\"_flex_align_self\";i:3;s:9:\"_offset_x\";i:3;s:13:\"_offset_x_end\";i:3;s:21:\"_offset_orientation_v\";i:3;s:14:\"_element_width\";i:3;}s:19:\"_section_background\";a:4:{s:17:\"_background_color\";i:3;s:22:\"_background_color_stop\";i:3;s:19:\"_background_color_b\";i:3;s:26:\"_background_gradient_angle\";i:3;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:6;s:3:\"gap\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:6;s:24:\"lqd_inview_keyframes_all\";i:6;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:9;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:9;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:9;s:24:\"lqd_inview_keyframes_all\";i:9;}}}}s:13:\"lqd-accordion\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"items_section\";a:2:{s:5:\"items\";i:6;s:9:\"title_tag\";i:6;}s:20:\"trigger_icon_section\";a:1:{s:19:\"enable_trigger_icon\";i:6;}}s:5:\"style\";a:3:{s:19:\"items_style_section\";a:1:{s:11:\"item_margin\";i:6;}s:22:\"triggers_style_section\";a:17:{s:29:\"trigger_typography_typography\";i:6;s:15:\"trigger_padding\";i:6;s:21:\"trigger_border_border\";i:6;s:20:\"trigger_border_width\";i:6;s:20:\"trigger_border_color\";i:6;s:21:\"trigger_border_radius\";i:6;s:19:\"trigger_color_hover\";i:6;s:35:\"trigger_background_hover_background\";i:6;s:30:\"trigger_background_hover_color\";i:6;s:20:\"trigger_color_active\";i:6;s:36:\"trigger_background_active_background\";i:6;s:31:\"trigger_background_active_color\";i:6;s:13:\"trigger_color\";i:6;s:27:\"trigger_border_hover_border\";i:6;s:26:\"trigger_border_hover_color\";i:6;s:28:\"trigger_border_active_border\";i:6;s:27:\"trigger_border_active_color\";i:6;}s:22:\"contents_style_section\";a:4:{s:29:\"content_typography_typography\";i:6;s:28:\"content_typography_font_size\";i:6;s:13:\"content_color\";i:6;s:15:\"content_padding\";i:6;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:6;s:24:\"lqd_inview_keyframes_all\";i:6;}}}}s:14:\"lqd-breadcrumb\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:4:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:16:\"_flex_align_self\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}s:7:\"content\";a:1:{s:15:\"general_section\";a:2:{s:32:\"breadcrumb_typography_typography\";i:1;s:31:\"breadcrumb_typography_font_size\";i:1;}}}}s:12:\"mf-telephone\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"mf_input_label\";i:2;s:20:\"mf_input_placeholder\";i:2;}}s:5:\"style\";a:3:{s:13:\"label_section\";a:7:{s:20:\"mf_input_label_color\";i:1;s:36:\"mf_input_label_typography_typography\";i:1;s:35:\"mf_input_label_typography_font_size\";i:1;s:37:\"mf_input_label_typography_font_weight\";i:1;s:37:\"mf_input_label_typography_line_height\";i:1;s:38:\"mf_input_label_typography_word_spacing\";i:1;s:21:\"mf_input_label_margin\";i:2;}s:13:\"input_section\";a:12:{s:16:\"mf_input_padding\";i:1;s:30:\"mf_input_background_background\";i:2;s:25:\"mf_input_background_color\";i:2;s:22:\"mf_input_border_border\";i:2;s:29:\"mf_input_typgraphy_typography\";i:1;s:28:\"mf_input_typgraphy_font_size\";i:1;s:30:\"mf_input_typgraphy_font_weight\";i:1;s:30:\"mf_input_typgraphy_line_height\";i:1;s:31:\"mf_input_typgraphy_word_spacing\";i:1;s:22:\"mf_input_border_radius\";i:1;s:21:\"mf_input_border_width\";i:1;s:21:\"mf_input_border_color\";i:1;}s:19:\"placeholder_section\";a:5:{s:43:\"mf_input_place_holder_typography_typography\";i:1;s:42:\"mf_input_place_holder_typography_font_size\";i:1;s:44:\"mf_input_place_holder_typography_font_weight\";i:1;s:44:\"mf_input_place_holder_typography_line_height\";i:1;s:45:\"mf_input_place_holder_typography_word_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;s:21:\"_element_width_mobile\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:2;s:24:\"lqd_inview_keyframes_all\";i:2;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}}}s:7:\"mf-text\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"quiz_section\";a:3:{s:14:\"mf_input_label\";i:1;s:13:\"mf_input_name\";i:1;s:20:\"mf_input_placeholder\";i:1;}}s:5:\"style\";a:3:{s:13:\"label_section\";a:7:{s:20:\"mf_input_label_color\";i:1;s:36:\"mf_input_label_typography_typography\";i:1;s:35:\"mf_input_label_typography_font_size\";i:1;s:37:\"mf_input_label_typography_font_weight\";i:1;s:37:\"mf_input_label_typography_line_height\";i:1;s:38:\"mf_input_label_typography_word_spacing\";i:1;s:21:\"mf_input_label_margin\";i:1;}s:13:\"input_section\";a:9:{s:16:\"mf_input_padding\";i:1;s:30:\"mf_input_background_background\";i:1;s:25:\"mf_input_background_color\";i:1;s:22:\"mf_input_border_border\";i:1;s:29:\"mf_input_typgraphy_typography\";i:1;s:28:\"mf_input_typgraphy_font_size\";i:1;s:30:\"mf_input_typgraphy_font_weight\";i:1;s:30:\"mf_input_typgraphy_line_height\";i:1;s:31:\"mf_input_typgraphy_word_spacing\";i:1;}s:19:\"placeholder_section\";a:5:{s:43:\"mf_input_place_holder_typography_typography\";i:1;s:42:\"mf_input_place_holder_typography_font_size\";i:1;s:44:\"mf_input_place_holder_typography_font_weight\";i:1;s:44:\"mf_input_place_holder_typography_line_height\";i:1;s:45:\"mf_input_place_holder_typography_word_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}}}s:16:\"mf-listing-optin\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:3:{s:21:\"mf_input_label_status\";i:1;s:14:\"mf_input_label\";i:1;s:28:\"mf_listing_optin_option_text\";i:1;}s:16:\"settings_section\";a:1:{s:17:\"mf_input_required\";i:1;}}s:5:\"style\";a:1:{s:27:\"listing_optinoption_section\";a:6:{s:29:\"mf_listing_optin_option_color\";i:1;s:34:\"mf_listing_optin_option_icon_color\";i:1;s:42:\"mf_listing_optin_typgraphy_text_typography\";i:1;s:41:\"mf_listing_optin_typgraphy_text_font_size\";i:1;s:43:\"mf_listing_optin_typgraphy_text_line_height\";i:1;s:44:\"mf_listing_optin_typgraphy_text_word_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}}}}s:16:\"mf-listing-lname\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:14:\"mf_input_label\";i:1;s:20:\"mf_input_placeholder\";i:1;}s:16:\"settings_section\";a:3:{s:17:\"mf_input_required\";i:1;s:24:\"mf_input_validation_type\";i:1;s:19:\"mf_input_min_length\";i:1;}}s:5:\"style\";a:2:{s:13:\"label_section\";a:1:{s:21:\"mf_input_label_margin\";i:1;}s:13:\"input_section\";a:6:{s:30:\"mf_input_background_background\";i:1;s:25:\"mf_input_background_color\";i:1;s:22:\"mf_input_border_border\";i:1;s:22:\"mf_input_border_radius\";i:1;s:21:\"mf_input_border_width\";i:1;s:21:\"mf_input_border_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:1;s:24:\"lqd_inview_keyframes_all\";i:1;}}}}}s:4:\"page\";a:3:{s:9:\"lqd-image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"general_section\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:2;s:6:\"height\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:2;s:24:\"lqd_inview_keyframes_all\";i:2;}}}}s:7:\"lqd-box\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"general_section\";a:8:{s:13:\"selected_icon\";i:2;s:5:\"title\";i:2;s:9:\"icon_list\";i:2;s:8:\"ib_title\";i:2;s:11:\"description\";i:2;s:11:\"show_button\";i:2;s:16:\"ib_selected_icon\";i:2;s:14:\"ib_button_link\";i:2;}s:17:\"ib_button_effects\";a:3:{s:22:\"ib_button_hover_effect\";i:2;s:21:\"ib_button_icon_effect\";i:2;s:27:\"ib_button_icon_hover_effect\";i:2;}}s:5:\"style\";a:8:{s:19:\"icons_style_section\";a:2:{s:14:\"icon_font_size\";i:2;s:11:\"icon_margin\";i:2;}s:20:\"titles_style_section\";a:3:{s:12:\"title_margin\";i:2;s:28:\"title_typography_line_height\";i:2;s:29:\"title_typography_word_spacing\";i:2;}s:26:\"descriptions_style_section\";a:3:{s:18:\"description_margin\";i:2;s:34:\"description_typography_line_height\";i:2;s:35:\"description_typography_word_spacing\";i:2;}s:28:\"ib_button_icon_style_section\";a:1:{s:19:\"ib_button_icon_size\";i:2;}s:23:\"ib_button_style_section\";a:2:{s:25:\"ib_typography_line_height\";i:2;s:26:\"ib_typography_word_spacing\";i:2;}s:23:\"subtitles_style_section\";a:2:{s:31:\"subtitle_typography_line_height\";i:2;s:32:\"subtitle_typography_word_spacing\";i:2;}s:20:\"labels_style_section\";a:2:{s:28:\"label_typography_line_height\";i:2;s:29:\"label_typography_word_spacing\";i:2;}s:23:\"iconlists_style_section\";a:2:{s:31:\"iconlist_typography_line_height\";i:2;s:32:\"iconlist_typography_word_spacing\";i:2;}}s:8:\"advanced\";a:1:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:2;s:24:\"lqd_inview_keyframes_all\";i:2;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";i:2;s:16:\"flex_align_items\";i:2;s:9:\"flex_wrap\";i:2;s:10:\"min_height\";i:1;}}s:8:\"advanced\";a:2:{s:22:\"lqd_animations_section\";a:2:{s:26:\"lqd_parallax_keyframes_all\";i:4;s:24:\"lqd_inview_keyframes_all\";i:4;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}}}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(3353, 'elementor_disabled_elements', 'a:0:{}', 'yes'),
(3406, 'GTranslate', 'a:39:{s:11:\"pro_version\";s:0:\"\";s:18:\"enterprise_version\";s:0:\"\";s:16:\"wrapper_selector\";s:19:\".gtranslate_wrapper\";s:14:\"custom_domains\";s:0:\"\";s:19:\"custom_domains_data\";s:0:\"\";s:15:\"url_translation\";s:0:\"\";s:17:\"add_hreflang_tags\";s:0:\"\";s:17:\"email_translation\";s:0:\"\";s:23:\"email_translation_debug\";s:0:\"\";s:12:\"show_in_menu\";s:11:\"wpbm_custom\";s:26:\"floating_language_selector\";s:2:\"no\";s:21:\"native_language_names\";s:0:\"\";s:10:\"enable_cdn\";i:1;s:23:\"detect_browser_language\";i:1;s:12:\"add_new_line\";i:1;s:21:\"select_language_label\";s:15:\"Select Language\";s:10:\"custom_css\";s:0:\"\";s:16:\"default_language\";s:2:\"en\";s:11:\"widget_look\";s:5:\"popup\";s:9:\"flag_size\";i:24;s:10:\"flag_style\";s:2:\"3d\";s:10:\"globe_size\";i:60;s:11:\"globe_color\";s:7:\"#66aaff\";s:10:\"incl_langs\";a:10:{i:0;s:2:\"ar\";i:1;s:5:\"zh-CN\";i:2;s:2:\"nl\";i:3;s:2:\"en\";i:4;s:2:\"fr\";i:5;s:2:\"de\";i:6;s:2:\"it\";i:7;s:2:\"pt\";i:8;s:2:\"ru\";i:9;s:2:\"es\";}s:11:\"fincl_langs\";a:6:{i:0;s:2:\"ar\";i:1;s:2:\"fr\";i:2;s:2:\"es\";i:3;s:2:\"ru\";i:4;s:2:\"en\";i:5;s:2:\"de\";}s:9:\"alt_flags\";a:0:{}s:19:\"switcher_text_color\";s:7:\"#f7f7f7\";s:20:\"switcher_arrow_color\";s:7:\"#f2f2f2\";s:21:\"switcher_border_color\";s:7:\"#161616\";s:25:\"switcher_background_color\";s:7:\"#303030\";s:32:\"switcher_background_shadow_color\";s:7:\"#474747\";s:31:\"switcher_background_hover_color\";s:7:\"#3a3a3a\";s:19:\"dropdown_text_color\";s:7:\"#eaeaea\";s:20:\"dropdown_hover_color\";s:7:\"#748393\";s:25:\"dropdown_background_color\";s:7:\"#474747\";s:29:\"float_switcher_open_direction\";s:5:\"right\";s:23:\"switcher_open_direction\";s:3:\"top\";s:14:\"language_codes\";s:320:\"ar,fr,es,ru,af,sq,am,hy,az,eu,be,bn,bs,bg,ca,ceb,ny,zh-CN,zh-TW,co,hr,cs,da,nl,en,eo,et,tl,fi,fy,gl,ka,de,el,gu,ht,ha,haw,iw,hi,hmn,hu,is,ig,id,ga,it,ja,jw,kn,kk,km,ko,ku,ky,lo,la,lv,lt,lb,mk,mg,ms,ml,mt,mi,mr,mn,my,ne,no,ps,fa,pl,pt,pa,ro,sm,gd,sr,st,sn,sd,si,sk,sl,so,su,sw,sv,tg,ta,te,th,tr,uk,ur,uz,vi,cy,xh,yi,yo,zu\";s:15:\"language_codes2\";s:320:\"af,sq,am,ar,hy,az,eu,be,bn,bs,bg,ca,ceb,ny,zh-CN,zh-TW,co,hr,cs,da,nl,en,eo,et,tl,fi,fr,fy,gl,ka,de,el,gu,ht,ha,haw,iw,hi,hmn,hu,is,ig,id,ga,it,ja,jw,kn,kk,km,ko,ku,ky,lo,la,lv,lt,lb,mk,mg,ms,ml,mt,mi,mr,mn,my,ne,no,ps,fa,pl,pt,pa,ro,ru,sm,gd,sr,st,sn,sd,si,sk,sl,so,es,su,sw,sv,tg,ta,te,th,tr,uk,ur,uz,vi,cy,xh,yi,yo,zu\";}', 'yes'),
(3407, 'widget_gtranslate', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(3408, 'gtranslate_admin_notice', 'a:3:{s:15:\"two_week_review\";a:3:{s:5:\"start\";s:9:\"6/29/2024\";s:3:\"int\";i:5;s:9:\"dismissed\";i:1;}s:12:\"upgrade_tips\";a:3:{s:5:\"start\";s:9:\"6/26/2024\";s:3:\"int\";i:2;s:9:\"dismissed\";i:1;}s:42:\"deactivate_plugin_googlelanguagetranslator\";a:2:{s:5:\"start\";s:9:\"9/26/2024\";s:3:\"int\";i:0;}}', 'yes'),
(3529, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"mani.prognamik@gmail.com\";s:7:\"version\";s:5:\"6.8.1\";s:9:\"timestamp\";i:1746045648;}', 'off'),
(3890, 'logistics-hub_purchase_code_domain_migrated', 'Migrate detected!', 'yes'),
(3892, 'logistics-hub_purchase_code_domain', 'j1brakes.com', 'yes'),
(4028, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(4029, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(4030, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(4117, '_transient_update_plugins', 'O:8:\"stdClass\":1:{s:12:\"last_checked\";i:0;}', 'on'),
(4118, '_transient_update_themes', 'O:8:\"stdClass\":1:{s:12:\"last_checked\";i:0;}', 'on'),
(5201, 'logistics-hub_purchase_code_status', 'valid', 'auto'),
(5202, 'logistics-hub_purchase_code', '657d63dd-a2b6-418c-b4a4-f2c2c295a817', 'auto'),
(5203, 'logistics-hub_purchase_code_domain_key', '3821fb1f-e4d1-40f5-be02-f99d1afba7b1', 'auto'),
(5501, 'yoast_migrations_free', 'a:1:{s:7:\"version\";s:4:\"25.0\";}', 'auto'),
(5502, 'wpseo', 'a:108:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:20:\"taxonomy_made_public\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"25.0\";s:16:\"previous_version\";s:4:\"24.9\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:0;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:1;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1722668356;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:20:\"https://j1brakes.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:3:{s:22:\"elementor_library_type\";s:22:\"elementor_library_type\";s:26:\"elementor_library_category\";s:26:\"elementor_library_category\";s:25:\"liquid-portfolio-category\";s:18:\"portfolio-category\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:5:{s:30:\"aioseo_custom_archive_settings\";b:1;s:31:\"aioseo_default_archive_settings\";b:1;s:23:\"aioseo_general_settings\";b:1;s:32:\"aioseo_posttype_default_settings\";b:1;s:24:\"aioseo_taxonomy_settings\";b:1;}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1722668356;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:10:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:18:\"e-floating-buttons\";i:3;s:13:\"liquid-header\";i:4;s:13:\"liquid-footer\";i:5;s:16:\"liquid-mega-menu\";i:6;s:20:\"liquid-title-wrapper\";i:7;s:16:\"liquid-portfolio\";i:8;s:15:\"liquid-archives\";i:9;s:12:\"metform-form\";}s:28:\"last_known_public_taxonomies\";a:4:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:25:\"liquid-portfolio-category\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1746092592;s:31:\"wpseo_unindexed_post_link_count\";i:1746092592;s:31:\"wpseo_unindexed_term_link_count\";i:1746092592;s:35:\"wpseo_total_unindexed_general_items\";i:1746092592;s:27:\"wpseo_total_unindexed_posts\";i:1726123459;s:27:\"wpseo_total_unindexed_terms\";i:1726123459;}s:14:\"new_post_types\";a:6:{i:4;s:13:\"liquid-header\";i:5;s:13:\"liquid-footer\";i:6;s:16:\"liquid-mega-menu\";i:7;s:20:\"liquid-title-wrapper\";i:8;s:16:\"liquid-portfolio\";i:9;s:15:\"liquid-archives\";}s:14:\"new_taxonomies\";a:1:{i:3;s:25:\"liquid-portfolio-category\";}s:34:\"show_new_content_type_notification\";b:1;s:44:\"site_kit_configuration_permanently_dismissed\";b:0;s:18:\"site_kit_connected\";b:0;s:23:\"site_kit_usage_tracking\";a:5:{s:19:\"setup_widget_loaded\";s:2:\"no\";s:23:\"first_interaction_stage\";s:0:\"\";s:22:\"last_interaction_stage\";s:0:\"\";s:34:\"setup_widget_temporarily_dismissed\";s:2:\"no\";s:34:\"setup_widget_permanently_dismissed\";s:2:\"no\";}}', 'auto'),
(5503, 'wpseo_titles', 'a:245:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:15:\"org-description\";s:0:\"\";s:9:\"org-email\";s:0:\"\";s:9:\"org-phone\";s:0:\"\";s:14:\"org-legal-name\";s:0:\"\";s:17:\"org-founding-date\";s:0:\"\";s:20:\"org-number-employees\";s:0:\"\";s:10:\"org-vat-id\";s:0:\"\";s:10:\"org-tax-id\";s:0:\"\";s:7:\"org-iso\";s:0:\"\";s:8:\"org-duns\";s:0:\"\";s:11:\"org-leicode\";s:0:\"\";s:9:\"org-naics\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:20:\"title-e-landing-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-e-landing-page\";s:0:\"\";s:22:\"noindex-e-landing-page\";b:0;s:33:\"display-metabox-pt-e-landing-page\";b:1;s:33:\"post_types-e-landing-page-maintax\";i:0;s:31:\"schema-page-type-e-landing-page\";s:7:\"WebPage\";s:34:\"schema-article-type-e-landing-page\";s:4:\"None\";s:27:\"social-title-e-landing-page\";s:9:\"%%title%%\";s:33:\"social-description-e-landing-page\";s:0:\"\";s:31:\"social-image-url-e-landing-page\";s:0:\"\";s:30:\"social-image-id-e-landing-page\";i:0;s:23:\"title-elementor_library\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-elementor_library\";s:0:\"\";s:25:\"noindex-elementor_library\";b:0;s:36:\"display-metabox-pt-elementor_library\";b:1;s:36:\"post_types-elementor_library-maintax\";i:0;s:34:\"schema-page-type-elementor_library\";s:7:\"WebPage\";s:37:\"schema-article-type-elementor_library\";s:4:\"None\";s:30:\"social-title-elementor_library\";s:9:\"%%title%%\";s:36:\"social-description-elementor_library\";s:0:\"\";s:34:\"social-image-url-elementor_library\";s:0:\"\";s:33:\"social-image-id-elementor_library\";i:0;s:19:\"title-liquid-header\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-liquid-header\";s:0:\"\";s:21:\"noindex-liquid-header\";b:0;s:32:\"display-metabox-pt-liquid-header\";b:1;s:32:\"post_types-liquid-header-maintax\";i:0;s:30:\"schema-page-type-liquid-header\";s:7:\"WebPage\";s:33:\"schema-article-type-liquid-header\";s:4:\"None\";s:26:\"social-title-liquid-header\";s:9:\"%%title%%\";s:32:\"social-description-liquid-header\";s:0:\"\";s:30:\"social-image-url-liquid-header\";s:0:\"\";s:29:\"social-image-id-liquid-header\";i:0;s:19:\"title-liquid-footer\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-liquid-footer\";s:0:\"\";s:21:\"noindex-liquid-footer\";b:0;s:32:\"display-metabox-pt-liquid-footer\";b:1;s:32:\"post_types-liquid-footer-maintax\";i:0;s:30:\"schema-page-type-liquid-footer\";s:7:\"WebPage\";s:33:\"schema-article-type-liquid-footer\";s:4:\"None\";s:26:\"social-title-liquid-footer\";s:9:\"%%title%%\";s:32:\"social-description-liquid-footer\";s:0:\"\";s:30:\"social-image-url-liquid-footer\";s:0:\"\";s:29:\"social-image-id-liquid-footer\";i:0;s:22:\"title-liquid-mega-menu\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-liquid-mega-menu\";s:0:\"\";s:24:\"noindex-liquid-mega-menu\";b:0;s:35:\"display-metabox-pt-liquid-mega-menu\";b:1;s:35:\"post_types-liquid-mega-menu-maintax\";i:0;s:33:\"schema-page-type-liquid-mega-menu\";s:7:\"WebPage\";s:36:\"schema-article-type-liquid-mega-menu\";s:4:\"None\";s:29:\"social-title-liquid-mega-menu\";s:9:\"%%title%%\";s:35:\"social-description-liquid-mega-menu\";s:0:\"\";s:33:\"social-image-url-liquid-mega-menu\";s:0:\"\";s:32:\"social-image-id-liquid-mega-menu\";i:0;s:26:\"title-liquid-title-wrapper\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-liquid-title-wrapper\";s:0:\"\";s:28:\"noindex-liquid-title-wrapper\";b:0;s:39:\"display-metabox-pt-liquid-title-wrapper\";b:1;s:39:\"post_types-liquid-title-wrapper-maintax\";i:0;s:37:\"schema-page-type-liquid-title-wrapper\";s:7:\"WebPage\";s:40:\"schema-article-type-liquid-title-wrapper\";s:4:\"None\";s:33:\"social-title-liquid-title-wrapper\";s:9:\"%%title%%\";s:39:\"social-description-liquid-title-wrapper\";s:0:\"\";s:37:\"social-image-url-liquid-title-wrapper\";s:0:\"\";s:36:\"social-image-id-liquid-title-wrapper\";i:0;s:22:\"title-liquid-portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-liquid-portfolio\";s:0:\"\";s:24:\"noindex-liquid-portfolio\";b:0;s:35:\"display-metabox-pt-liquid-portfolio\";b:1;s:35:\"post_types-liquid-portfolio-maintax\";i:0;s:33:\"schema-page-type-liquid-portfolio\";s:7:\"WebPage\";s:36:\"schema-article-type-liquid-portfolio\";s:4:\"None\";s:29:\"social-title-liquid-portfolio\";s:9:\"%%title%%\";s:35:\"social-description-liquid-portfolio\";s:0:\"\";s:33:\"social-image-url-liquid-portfolio\";s:0:\"\";s:32:\"social-image-id-liquid-portfolio\";i:0;s:32:\"title-ptarchive-liquid-portfolio\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-ptarchive-liquid-portfolio\";s:0:\"\";s:34:\"bctitle-ptarchive-liquid-portfolio\";s:0:\"\";s:34:\"noindex-ptarchive-liquid-portfolio\";b:0;s:39:\"social-title-ptarchive-liquid-portfolio\";s:21:\"%%pt_plural%% Archive\";s:45:\"social-description-ptarchive-liquid-portfolio\";s:0:\"\";s:43:\"social-image-url-ptarchive-liquid-portfolio\";s:0:\"\";s:42:\"social-image-id-ptarchive-liquid-portfolio\";i:0;s:21:\"title-liquid-archives\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-liquid-archives\";s:0:\"\";s:23:\"noindex-liquid-archives\";b:0;s:34:\"display-metabox-pt-liquid-archives\";b:1;s:34:\"post_types-liquid-archives-maintax\";i:0;s:32:\"schema-page-type-liquid-archives\";s:7:\"WebPage\";s:35:\"schema-article-type-liquid-archives\";s:4:\"None\";s:28:\"social-title-liquid-archives\";s:9:\"%%title%%\";s:34:\"social-description-liquid-archives\";s:0:\"\";s:32:\"social-image-url-liquid-archives\";s:0:\"\";s:31:\"social-image-id-liquid-archives\";i:0;s:18:\"title-metform-form\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-metform-form\";s:0:\"\";s:20:\"noindex-metform-form\";b:0;s:31:\"display-metabox-pt-metform-form\";b:1;s:31:\"post_types-metform-form-maintax\";i:0;s:29:\"schema-page-type-metform-form\";s:7:\"WebPage\";s:32:\"schema-article-type-metform-form\";s:4:\"None\";s:25:\"social-title-metform-form\";s:9:\"%%title%%\";s:31:\"social-description-metform-form\";s:0:\"\";s:29:\"social-image-url-metform-form\";s:0:\"\";s:28:\"social-image-id-metform-form\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:35:\"title-tax-liquid-portfolio-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:38:\"metadesc-tax-liquid-portfolio-category\";s:0:\"\";s:45:\"display-metabox-tax-liquid-portfolio-category\";b:1;s:37:\"noindex-tax-liquid-portfolio-category\";b:0;s:42:\"social-title-tax-liquid-portfolio-category\";s:23:\"%%term_title%% Archives\";s:48:\"social-description-tax-liquid-portfolio-category\";s:0:\"\";s:46:\"social-image-url-tax-liquid-portfolio-category\";s:0:\"\";s:45:\"social-image-id-tax-liquid-portfolio-category\";i:0;s:43:\"taxonomy-liquid-portfolio-category-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}', 'auto'),
(5504, 'wpseo_social', 'a:20:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}s:12:\"mastodon_url\";s:0:\"\";}', 'auto'),
(7179, 'metform_onboard_options', 'a:1:{s:8:\"settings\";a:1:{s:16:\"newsletter_email\";s:0:\"\";}}', 'auto'),
(7180, 'met_form_onboard_status', 'onboarded', 'auto'),
(32521, 'sm_rewrite_done', '$Id: class-googlesitemapgeneratorloader.php 937300 2014-06-23 18:04:11Z arnee $', 'auto'),
(32522, 'gsg_indexnow-is_valid_api_key', '2', 'auto'),
(32523, 'gsg_indexnow-admin_api_key', 'NTdjNmQ1MmFiZjU1NDFkZDkyMmUyMDExMDQyZmMyNGQ=', 'auto'),
(32524, 'sm_options', 'a:66:{s:18:\"sm_b_prio_provider\";s:41:\"GoogleSitemapGeneratorPrioByCountProvider\";s:9:\"sm_b_ping\";b:0;s:10:\"sm_b_stats\";b:0;s:12:\"sm_b_autozip\";b:1;s:11:\"sm_b_memory\";s:0:\"\";s:9:\"sm_b_time\";i:-1;s:18:\"sm_b_style_default\";b:1;s:10:\"sm_b_style\";s:0:\"\";s:12:\"sm_b_baseurl\";s:0:\"\";s:14:\"sm_b_rewrites2\";b:1;s:13:\"sm_b_indexnow\";b:1;s:22:\"sm_b_activate_indexnow\";b:1;s:15:\"sm_b_index_date\";b:0;s:11:\"sm_b_robots\";b:1;s:9:\"sm_b_html\";b:0;s:12:\"sm_b_exclude\";a:0:{}s:17:\"sm_b_exclude_cats\";a:0:{}s:10:\"sm_in_home\";b:1;s:11:\"sm_in_posts\";b:1;s:15:\"sm_in_posts_sub\";b:0;s:11:\"sm_in_pages\";b:1;s:10:\"sm_in_cats\";b:0;s:15:\"sm_product_tags\";b:1;s:17:\"sm_in_product_cat\";b:1;s:24:\"sm_in_product_assortment\";b:1;s:10:\"sm_in_arch\";b:0;s:10:\"sm_in_auth\";b:0;s:10:\"sm_in_tags\";b:0;s:9:\"sm_in_tax\";a:0:{}s:17:\"sm_in_customtypes\";a:0:{}s:13:\"sm_in_lastmod\";b:1;s:17:\"sm_b_sitemap_name\";s:7:\"sitemap\";s:16:\"sm_b_old_sm_name\";s:7:\"sitemap\";s:10:\"sm_cf_home\";s:5:\"daily\";s:11:\"sm_cf_posts\";s:7:\"monthly\";s:11:\"sm_cf_pages\";s:6:\"weekly\";s:10:\"sm_cf_cats\";s:6:\"weekly\";s:17:\"sm_cf_product_cat\";s:6:\"weekly\";s:10:\"sm_cf_auth\";s:6:\"weekly\";s:15:\"sm_cf_arch_curr\";s:5:\"daily\";s:14:\"sm_cf_arch_old\";s:6:\"yearly\";s:10:\"sm_cf_tags\";s:6:\"weekly\";s:10:\"sm_pr_home\";d:1;s:11:\"sm_pr_posts\";d:0.6;s:15:\"sm_pr_posts_min\";d:0.2;s:11:\"sm_pr_pages\";d:0.6;s:10:\"sm_pr_cats\";d:0.3;s:17:\"sm_pr_product_cat\";d:0.3;s:10:\"sm_pr_arch\";d:0.3;s:10:\"sm_pr_auth\";d:0.3;s:10:\"sm_pr_tags\";d:0.3;s:12:\"sm_i_donated\";b:0;s:17:\"sm_i_hide_donated\";b:0;s:17:\"sm_i_install_date\";b:0;s:16:\"sm_i_hide_survey\";b:0;s:14:\"sm_i_hide_note\";b:0;s:15:\"sm_i_hide_works\";b:0;s:16:\"sm_i_hide_donors\";b:0;s:9:\"sm_i_hash\";b:0;s:8:\"sm_i_tid\";s:0:\"\";s:13:\"sm_i_lastping\";i:1744886898;s:16:\"sm_i_supportfeed\";b:0;s:22:\"sm_i_supportfeed_cache\";b:0;s:13:\"sm_links_page\";i:1000;s:15:\"sm_user_consent\";b:0;s:20:\"sm_wp_sitemap_status\";b:0;}', 'auto'),
(32531, 'sm_user_consent', 'yes', 'auto'),
(32532, 'sm_cpages', 'a:0:{}', 'off'),
(32533, 'sm_status', 'O:28:\"GoogleSitemapGeneratorStatus\":4:{s:40:\"\0GoogleSitemapGeneratorStatus\0start_time\";d:1744886898.443694;s:38:\"\0GoogleSitemapGeneratorStatus\0end_time\";d:1744886898.448468;s:42:\"\0GoogleSitemapGeneratorStatus\0ping_results\";a:0:{}s:39:\"\0GoogleSitemapGeneratorStatus\0auto_save\";b:1;}', 'off'),
(41957, 'googlelanguagetranslator_active', '1', 'auto'),
(41958, 'googlelanguagetranslator_language', 'en', 'auto'),
(41959, 'googlelanguagetranslator_flags', '1', 'auto'),
(41960, 'language_display_settings', 'a:6:{s:2:\"ar\";s:1:\"1\";s:2:\"en\";s:1:\"1\";s:2:\"fr\";s:1:\"1\";s:2:\"de\";s:1:\"1\";s:2:\"ru\";s:1:\"1\";s:2:\"es\";s:1:\"1\";}', 'auto'),
(41961, 'googlelanguagetranslator_translatebox', 'no', 'auto'),
(41962, 'googlelanguagetranslator_display', 'SIMPLE', 'auto'),
(41963, 'googlelanguagetranslator_toolbar', 'No', 'auto'),
(41964, 'googlelanguagetranslator_showbranding', 'No', 'auto'),
(41965, 'googlelanguagetranslator_flags_alignment', 'flags_left', 'auto'),
(41966, 'googlelanguagetranslator_analytics', '', 'auto'),
(41967, 'googlelanguagetranslator_analytics_id', '', 'auto'),
(41968, 'googlelanguagetranslator_css', '', 'auto'),
(41969, 'googlelanguagetranslator_multilanguage', '', 'auto'),
(41970, 'googlelanguagetranslator_floating_widget', 'no', 'auto'),
(41971, 'googlelanguagetranslator_flag_size', '20', 'auto'),
(41972, 'googlelanguagetranslator_flags_order', '', 'auto'),
(41973, 'googlelanguagetranslator_english_flag_choice', 'us_flag', 'auto'),
(41974, 'googlelanguagetranslator_spanish_flag_choice', 'spanish_flag', 'auto'),
(41975, 'googlelanguagetranslator_portuguese_flag_choice', 'portuguese_flag', 'auto'),
(41976, 'googlelanguagetranslator_floating_widget_text', 'Translate »', 'auto'),
(41977, 'googlelanguagetranslator_floating_widget_text_allow_translation', '', 'auto'),
(41978, 'widget_glt_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(41979, 'glt_admin_notice', 'a:3:{s:16:\"glt_announcement\";a:2:{s:5:\"start\";s:9:\"9/26/2024\";s:3:\"int\";i:0;}s:15:\"two_week_review\";a:2:{s:5:\"start\";s:9:\"10/1/2024\";s:3:\"int\";i:5;}s:12:\"upgrade_tips\";a:2:{s:5:\"start\";s:9:\"9/28/2024\";s:3:\"int\";i:2;}}', 'auto'),
(41981, 'googlelanguagetranslator_seo_active', '', 'auto'),
(41982, 'googlelanguagetranslator_url_structure', 'sub_domain', 'auto'),
(41983, 'googlelanguagetranslator_url_translation_active', '', 'auto'),
(41984, 'googlelanguagetranslator_hreflang_tags_active', '', 'auto'),
(41985, 'glt_language_switcher_width', '100%', 'auto'),
(41986, 'glt_language_switcher_text_color', '#e8bebe', 'auto'),
(41987, 'glt_language_switcher_bg_color', '', 'auto'),
(41988, 'glt_floating_widget_position', 'bottom_left', 'auto'),
(41989, 'glt_floating_widget_text_color', '#ffffff', 'auto'),
(41990, 'glt_floating_widget_bg_color', '#f89406', 'auto'),
(42773, 'mf_hubspot_form_guid_656', '', 'auto'),
(42774, 'mf_hubspot_form_portalId_656', '', 'auto'),
(42775, 'mf_hubspot_form_data_656', 'a:0:{}', 'auto'),
(42798, 'mf_hubspot_form_guid_17', '', 'auto'),
(42799, 'mf_hubspot_form_portalId_17', '', 'auto'),
(42800, 'mf_hubspot_form_data_17', 'a:0:{}', 'auto'),
(55432, '_elementor_global_css', 'a:7:{s:4:\"time\";i:1729661952;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}', 'auto'),
(55525, 'hfcm_activation_date', '1729666848', 'auto'),
(55526, 'hfcm_db_version', '1.5', 'auto'),
(57758, 'elementor_checklist', '{\"last_opened_timestamp\":-1,\"first_closed_checklist_in_editor\":false,\"is_popup_minimized\":false,\"editor_visit_count\":0,\"steps\":[]}', 'auto'),
(64440, 'db_upgraded', '', 'on'),
(64442, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"8c7d46a72d7d4591fc1dd9485bedb304\";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'),
(79509, 'litespeed.conf._version', '6.5.4', 'auto'),
(93902, 'can_compress_scripts', '1', 'on'),
(93917, 'e_editor_counter', '97', 'auto'),
(93918, '_elementor_free_to_pro_upsell', 'a:2:{s:7:\"timeout\";i:1744889626;s:5:\"value\";s:593:\"[{\"id\":\"animated_headline\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/animated_headline.jpg\"},{\"id\":\"video_playlist\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/video_playlist.jpg\"},{\"id\":\"cta\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/cta.jpg\"},{\"id\":\"testimonial_widget\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/testimonial_widget.jpg\"},{\"id\":\"image_carousel\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/image_carousel.jpg\"}]\";}', 'off'),
(107238, '_transient_timeout_logistics-hub-update-response', '3483768098', 'off'),
(107239, '_transient_logistics-hub-update-response', 'O:8:\"stdClass\":8:{s:14:\"stable_version\";s:5:\"1.1.6\";s:11:\"new_version\";s:5:\"1.1.6\";s:4:\"slug\";s:13:\"logistics-hub\";s:3:\"url\";s:54:\"https://hub.liquid-themes.com/logistics-hub-changelog/\";s:7:\"package\";s:55:\"https://api.liquid-themes.com/updates/logistics-hub.zip\";s:12:\"download_url\";s:55:\"https://api.liquid-themes.com/updates/logistics-hub.zip\";s:8:\"sections\";a:2:{s:11:\"description\";b:0;s:9:\"changelog\";b:0;}s:8:\"features\";s:171:\"The latest version contains new features, bug fixes and improvements.
See more details \";}', 'off'),
(107889, 'elementor_landing_pages_activation', '0', 'auto'),
(107898, '_elementor_local_google_fonts', 'a:3:{s:5:\"inter\";a:2:{s:3:\"url\";s:76:\"https://j1brakes.com/wp-content/uploads/elementor/google-fonts/css/inter.css\";s:7:\"version\";i:1742245472;}s:10:\"robotoslab\";a:2:{s:3:\"url\";s:81:\"https://j1brakes.com/wp-content/uploads/elementor/google-fonts/css/robotoslab.css\";s:7:\"version\";i:1742245474;}s:7:\"sarabun\";a:2:{s:3:\"url\";s:78:\"https://j1brakes.com/wp-content/uploads/elementor/google-fonts/css/sarabun.css\";s:7:\"version\";i:1742245475;}}', 'auto'),
(111438, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1746478187;s:7:\"checked\";a:5:{s:13:\"logistics-hub\";s:5:\"1.1.6\";s:16:\"twentytwentyfive\";s:3:\"1.2\";s:16:\"twentytwentyfour\";s:3:\"1.3\";s:17:\"twentytwentythree\";s:3:\"1.6\";s:15:\"twentytwentytwo\";s:3:\"2.0\";}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.2\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.2.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:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.2.0.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}', 'off'),
(111444, 'WPLANG', 'en', 'yes'),
(111604, 'elementor_connect_site_key', '48a768fa85f3f5223626965da3a9dc84', 'auto'),
(112394, 'elementor-custom-breakpoints-files', 'a:23:{s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1745355121;}s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1745355121;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1745355121;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1745355121;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1745355121;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1745355121;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1745355121;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1745355121;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1745355121;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1745355121;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1745355121;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1745355121;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1745355121;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1745355121;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1745355121;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1745355121;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1745355121;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1745355121;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1745355121;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1745355121;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1745355121;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1745355121;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1745355121;}}', 'auto'),
(112397, '_elementor_assets_data', 'a:1:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:4:{s:13:\"fas-mail-bulk\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:576;s:6:\"height\";i:512;s:4:\"path\";s:606:\"M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z\";s:3:\"key\";s:13:\"fas-mail-bulk\";}s:7:\"version\";s:6:\"5.15.3\";}s:12:\"fab-facebook\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:264:\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\";s:3:\"key\";s:12:\"fab-facebook\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fab-instagram\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:922:\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\";s:3:\"key\";s:13:\"fab-instagram\";}s:7:\"version\";s:6:\"5.15.3\";}s:20:\"fas-phone-square-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:460:\"M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z\";s:3:\"key\";s:20:\"fas-phone-square-alt\";}s:7:\"version\";s:6:\"5.15.3\";}}}}', 'auto'),
(113367, '_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.1.zip\";s:6:\"locale\";s:2:\"en\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.8.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.8.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";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:1746477048;s:15:\"version_checked\";s:5:\"6.8.1\";s:12:\"translations\";a:0:{}}', 'off'),
(113432, '_site_transient_timeout_php_check_a0b03c46dbe37253c3391e32a7bb296f', '1746693509', 'off'),
(113433, '_site_transient_php_check_a0b03c46dbe37253c3391e32a7bb296f', 'a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(113452, '_site_transient_timeout_browser_33d0f257a817d1ca4c4381b87f8ad83f', '1746697393', 'off'),
(113453, '_site_transient_browser_33d0f257a817d1ca4c4381b87f8ad83f', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"135.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'off'),
(114031, '_site_transient_timeout_theme_roots', '1746478849', 'off'),
(114032, '_site_transient_theme_roots', 'a:5:{s:13:\"logistics-hub\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}', 'off'),
(114033, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1746478188;s:8:\"response\";a:1:{s:33:\"wp-bottom-menu/wp-bottom-menu.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/wp-bottom-menu\";s:4:\"slug\";s:14:\"wp-bottom-menu\";s:6:\"plugin\";s:33:\"wp-bottom-menu/wp-bottom-menu.php\";s:11:\"new_version\";s:5:\"2.2.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-bottom-menu/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/wp-bottom-menu.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-bottom-menu/assets/icon-256x256.png?rev=2416745\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-bottom-menu/assets/icon-128x128.png?rev=2416745\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wp-bottom-menu/assets/banner-1544x500.png?rev=2419028\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-bottom-menu/assets/banner-772x250.png?rev=2419028\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:9:{s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:5:\"4.5.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.28.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:66:\"header-footer-code-manager/99robots-header-footer-code-manager.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/header-footer-code-manager\";s:4:\"slug\";s:26:\"header-footer-code-manager\";s:6:\"plugin\";s:66:\"header-footer-code-manager/99robots-header-footer-code-manager.php\";s:11:\"new_version\";s:6:\"1.1.39\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/header-footer-code-manager/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/header-footer-code-manager.1.1.39.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-code-manager/assets/icon-256x256.png?rev=2681303\";s:2:\"1x\";s:79:\"https://ps.w.org/header-footer-code-manager/assets/icon-128x128.png?rev=2681303\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/header-footer-code-manager/assets/banner-1544x500.png?rev=2681303\";s:2:\"1x\";s:81:\"https://ps.w.org/header-footer-code-manager/assets/banner-772x250.png?rev=2681303\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/litespeed-cache\";s:4:\"slug\";s:15:\"litespeed-cache\";s:6:\"plugin\";s:35:\"litespeed-cache/litespeed-cache.php\";s:11:\"new_version\";s:3:\"7.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181\";s:2:\"1x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181\";s:2:\"1x\";s:70:\"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:19:\"metform/metform.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/metform\";s:4:\"slug\";s:7:\"metform\";s:6:\"plugin\";s:19:\"metform/metform.php\";s:11:\"new_version\";s:5:\"3.9.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/metform/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/metform.3.9.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/metform/assets/icon-256x256.png?rev=3260686\";s:2:\"1x\";s:60:\"https://ps.w.org/metform/assets/icon-128x128.png?rev=3260686\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/metform/assets/banner-1544x500.jpg?rev=3260686\";s:2:\"1x\";s:62:\"https://ps.w.org/metform/assets/banner-772x250.jpg?rev=3260686\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.8.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";}s:39:\"wp-file-manager/file_folder_manager.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-file-manager\";s:4:\"slug\";s:15:\"wp-file-manager\";s:6:\"plugin\";s:39:\"wp-file-manager/file_folder_manager.php\";s:11:\"new_version\";s:5:\"8.0.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-file-manager/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-file-manager.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=2491299\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=2491299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:36:\"google-sitemap-generator/sitemap.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/google-sitemap-generator\";s:4:\"slug\";s:24:\"google-sitemap-generator\";s:6:\"plugin\";s:36:\"google-sitemap-generator/sitemap.php\";s:11:\"new_version\";s:6:\"4.1.21\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.21.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/google-sitemap-generator/assets/icon-256x256.png?rev=2713572\";s:2:\"1x\";s:77:\"https://ps.w.org/google-sitemap-generator/assets/icon-128x128.png?rev=2713572\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/google-sitemap-generator/assets/banner-772-250.png?rev=2713572\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"25.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.25.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3112542\";s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3112542\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=3257862\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=3257862\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=3257862\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=3257862\";}s:8:\"requires\";s:3:\"6.6\";}}s:7:\"checked\";a:12:{s:32:\"duplicate-page/duplicatepage.php\";s:5:\"4.5.4\";s:23:\"elementor/elementor.php\";s:6:\"3.28.4\";s:66:\"header-footer-code-manager/99robots-header-footer-code-manager.php\";s:6:\"1.1.39\";s:27:\"hub-booking/hub-booking.php\";s:3:\"1.1\";s:35:\"litespeed-cache/litespeed-cache.php\";s:3:\"7.1\";s:41:\"logistics-hub-core/logistics-hub-core.php\";s:5:\"1.1.6\";s:19:\"metform/metform.php\";s:5:\"3.9.8\";s:27:\"woocommerce/woocommerce.php\";s:5:\"9.8.3\";s:33:\"wp-bottom-menu/wp-bottom-menu.php\";s:5:\"2.2.3\";s:39:\"wp-file-manager/file_folder_manager.php\";s:5:\"8.0.1\";s:36:\"google-sitemap-generator/sitemap.php\";s:6:\"4.1.21\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"25.0\";}}', 'off'),
(114047, '_transient_timeout_elementor_remote_info_api_data_3.28.4', '1746531745', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(114048, '_transient_elementor_remote_info_api_data_3.28.4', 'a:4:{s:9:\"timestamp\";s:10:\"1746487820\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:82:{i:0;a:4:{s:4:\"name\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-2\";s:5:\"title\";s:7:\"Classic\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-3\";s:5:\"title\";s:8:\"Showcase\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:6;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-4\";s:5:\"title\";s:5:\"Links\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:8;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:9;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-5\";s:5:\"title\";s:8:\"Services\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:10;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:11;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-6\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:12;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-7\";s:5:\"title\";s:13:\"Business Card\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:14;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:10:\"off-canvas\";s:5:\"title\";s:10:\"Off-Canvas\";s:4:\"icon\";s:16:\"eicon-off-canvas\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:25;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:27;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:33;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:34;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:35;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:36;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:37;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:38;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:39;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:40;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:41;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:43;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:51;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:75;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:76;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:77;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:78;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:79;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:80;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:81;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}', 'off'),
(114074, '_site_transient_timeout_wp_theme_files_patterns-185ee26004d54d432a937c9a9d082096', '1746509306', 'off'),
(114075, '_site_transient_wp_theme_files_patterns-185ee26004d54d432a937c9a9d082096', 'a:2:{s:7:\"version\";s:5:\"1.1.6\";s:8:\"patterns\";a:0:{}}', 'off');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5, 7, '_elementor_edit_mode', 'builder'),
(6, 7, '_elementor_template_type', 'kit'),
(7, 8, '_wp_attached_file', 'woocommerce-placeholder.png'),
(8, 8, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10546;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84297;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(9, 6, '_elementor_edit_mode', 'builder'),
(10, 6, '_elementor_template_type', 'kit'),
(11, 6, '_wp_page_template', 'default'),
(12, 6, '_elementor_page_settings', 'a:134:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#EA2427\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:9:\"#1B1B1B99\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:23:{i:0;a:3:{s:3:\"_id\";s:7:\"61b855f\";s:5:\"title\";s:9:\"Body - Bg\";s:5:\"color\";s:7:\"#F2F2F2\";}i:1;a:3:{s:3:\"_id\";s:7:\"5b35d73\";s:5:\"title\";s:7:\"Heading\";s:5:\"color\";s:7:\"#1B1B1B\";}i:2;a:3:{s:3:\"_id\";s:7:\"1a0022c\";s:5:\"title\";s:16:\"Text - Secondary\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:7:\"43b07a5\";s:5:\"title\";s:21:\"Button - Plain - Text\";s:5:\"color\";s:7:\"#1B1B1B\";}i:4;a:3:{s:3:\"_id\";s:7:\"47490ef\";s:5:\"title\";s:19:\"Button - Solid - Bg\";s:5:\"color\";s:7:\"#1B1B1B\";}i:5;a:3:{s:3:\"_id\";s:7:\"d5f65f9\";s:5:\"title\";s:21:\"Button - Solid - Text\";s:5:\"color\";s:7:\"#FFFFFF\";}i:6;a:3:{s:3:\"_id\";s:7:\"a606f90\";s:5:\"title\";s:12:\"Over primary\";s:5:\"color\";s:7:\"#FFFFFF\";}i:7;a:3:{s:3:\"_id\";s:7:\"1c775b2\";s:5:\"title\";s:12:\"Heading - BG\";s:5:\"color\";s:7:\"#E3E3E3\";}i:8;a:3:{s:3:\"_id\";s:7:\"76df9ec\";s:5:\"title\";s:11:\"Footer - BG\";s:5:\"color\";s:7:\"#DFDFDF\";}i:9;a:3:{s:3:\"_id\";s:7:\"204e3eb\";s:5:\"title\";s:13:\"Footer - Link\";s:5:\"color\";s:9:\"#18181899\";}i:10;a:3:{s:3:\"_id\";s:7:\"5eea121\";s:5:\"title\";s:19:\"Footer - Link hover\";s:5:\"color\";s:7:\"#181818\";}i:11;a:3:{s:3:\"_id\";s:7:\"8ec2f1e\";s:5:\"title\";s:13:\"Footer - Text\";s:5:\"color\";s:7:\"#616161\";}i:12;a:3:{s:3:\"_id\";s:7:\"1dbb2b1\";s:5:\"title\";s:20:\"Footer - Link darker\";s:5:\"color\";s:7:\"#2E2E2E\";}i:13;a:3:{s:3:\"_id\";s:7:\"dafbdf1\";s:5:\"title\";s:6:\"Yellow\";s:5:\"color\";s:7:\"#FF4F4F\";}i:14;a:3:{s:3:\"_id\";s:7:\"bbd049c\";s:5:\"title\";s:11:\"Yellow Dark\";s:5:\"color\";s:7:\"#D64545\";}i:15;a:3:{s:3:\"_id\";s:7:\"654afd6\";s:5:\"title\";s:9:\"Dark - BG\";s:5:\"color\";s:7:\"#1B1B1B\";}i:16;a:3:{s:3:\"_id\";s:7:\"3774f73\";s:5:\"title\";s:14:\"Dark - Heading\";s:5:\"color\";s:7:\"#FFFFFF\";}i:17;a:3:{s:3:\"_id\";s:7:\"e0f18b6\";s:5:\"title\";s:11:\"Dark - Text\";s:5:\"color\";s:9:\"#FFFFFF8C\";}i:18;a:3:{s:3:\"_id\";s:7:\"084d856\";s:5:\"title\";s:16:\"Mobile Menu - BG\";s:5:\"color\";s:7:\"#1B1B1B\";}i:19;a:3:{s:3:\"_id\";s:7:\"6ad72d6\";s:5:\"title\";s:18:\"Mobile Menu - Text\";s:5:\"color\";s:9:\"#FFFFFF80\";}i:20;a:3:{s:3:\"_id\";s:7:\"155d4ae\";s:5:\"title\";s:25:\"Mobile Menu - Text active\";s:5:\"color\";s:7:\"#FFFFFF\";}i:21;a:3:{s:3:\"_id\";s:7:\"2ed0690\";s:5:\"title\";s:7:\"Outline\";s:5:\"color\";s:7:\"#C9C9C9\";}i:22;a:3:{s:3:\"_id\";s:7:\"aa8e668\";s:5:\"title\";s:15:\"Outline - Light\";s:5:\"color\";s:7:\"#E1E1E1\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_typography\";s:6:\"custom\";}i:2;a:7:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"600\";}}s:17:\"custom_typography\";a:12:{i:0;a:6:{s:3:\"_id\";s:7:\"361df56\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"PPAgrandir\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";}i:1;a:7:{s:3:\"_id\";s:7:\"8cbff5c\";s:5:\"title\";s:14:\"Button - Small\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"PPAgrandir\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.02;s:5:\"sizes\";a:0:{}}}i:2;a:7:{s:3:\"_id\";s:7:\"d19fa00\";s:5:\"title\";s:4:\"Menu\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"PPAgrandir\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.02;s:5:\"sizes\";a:0:{}}}i:3;a:6:{s:3:\"_id\";s:7:\"43df7c7\";s:5:\"title\";s:13:\"Menu - Footer\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.45;s:5:\"sizes\";a:0:{}}}i:4;a:5:{s:3:\"_id\";s:7:\"05699ce\";s:5:\"title\";s:18:\"Paragraph - Medium\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.79;s:5:\"sizes\";a:0:{}}}i:5;a:5:{s:3:\"_id\";s:7:\"058bd07\";s:5:\"title\";s:17:\"Paragraph - Small\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.188;s:5:\"sizes\";a:0:{}}}i:6;a:5:{s:3:\"_id\";s:7:\"7ebb86a\";s:5:\"title\";s:18:\"Paragraph - XSmall\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.38;s:5:\"sizes\";a:0:{}}}i:7;a:6:{s:3:\"_id\";s:7:\"032bde8\";s:5:\"title\";s:28:\"Paragraph - XSmall uppercase\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:13;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.1;s:5:\"sizes\";a:0:{}}}i:8;a:8:{s:3:\"_id\";s:7:\"a054e68\";s:5:\"title\";s:15:\"Heading - Large\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"PPAgrandir\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:59;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.95;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:3:\"_id\";s:7:\"6b6095e\";s:5:\"title\";s:16:\"Heading - Medium\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"PPAgrandir\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.07;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}}i:10;a:6:{s:3:\"_id\";s:7:\"46e46a9\";s:5:\"title\";s:15:\"Heading - Small\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_family\";s:10:\"PPAgrandir\";}i:11;a:7:{s:3:\"_id\";s:7:\"9bfb218\";s:5:\"title\";s:16:\"Heading - XSmall\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"PPAgrandir\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.02;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"J1 Brakes\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:23:\"liquid_header_condition\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"2325428\";s:5:\"title\";s:4:\"Site\";s:6:\"cpt_id\";s:4:\"1834\";}i:1;a:5:{s:3:\"_id\";s:7:\"1c1043b\";s:5:\"title\";s:10:\"Front page\";s:6:\"cpt_id\";s:2:\"23\";s:9:\"condition\";s:8:\"singular\";s:18:\"singular_condition\";s:10:\"front-page\";}i:2;a:6:{s:5:\"title\";s:12:\"Home Alt new\";s:6:\"cpt_id\";s:2:\"23\";s:9:\"condition\";s:8:\"singular\";s:18:\"singular_condition\";s:5:\"pages\";s:23:\"singular_page_condition\";a:3:{i:0;s:4:\"1253\";i:1;s:4:\"1496\";i:2;s:4:\"1735\";}s:3:\"_id\";s:7:\"7e8c940\";}i:3;a:6:{s:5:\"title\";s:13:\"Home page new\";s:6:\"cpt_id\";s:2:\"23\";s:9:\"condition\";s:8:\"singular\";s:18:\"singular_condition\";s:5:\"pages\";s:23:\"singular_page_condition\";a:1:{i:0;s:4:\"1496\";}s:3:\"_id\";s:7:\"d139b5f\";}}s:29:\"liquid_titlewrapper_condition\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"da5f721\";s:5:\"title\";s:18:\"Site title wrapper\";s:6:\"cpt_id\";s:4:\"1033\";}i:1;a:4:{s:5:\"title\";s:23:\"Home page title wrapper\";s:9:\"condition\";s:8:\"singular\";s:18:\"singular_condition\";s:10:\"front-page\";s:3:\"_id\";s:7:\"297bffa\";}i:2;a:4:{s:3:\"_id\";s:7:\"d0ab5c2\";s:5:\"title\";s:18:\"Post title wrapper\";s:9:\"condition\";s:8:\"singular\";s:18:\"singular_condition\";s:4:\"post\";}i:3;a:5:{s:3:\"_id\";s:7:\"438ac8a\";s:5:\"title\";s:23:\"Portfolio Title Wrapper\";s:6:\"cpt_id\";s:4:\"1033\";s:9:\"condition\";s:8:\"singular\";s:18:\"singular_condition\";s:16:\"liquid-portfolio\";}i:4;a:5:{s:3:\"_id\";s:7:\"b869ca8\";s:5:\"title\";s:22:\"Home Alt Title Wrapper\";s:9:\"condition\";s:8:\"singular\";s:18:\"singular_condition\";s:5:\"pages\";s:23:\"singular_page_condition\";a:3:{i:0;s:4:\"1253\";i:1;s:4:\"1496\";i:2;s:4:\"1735\";}}}s:23:\"liquid_footer_condition\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"1b4b167\";s:5:\"title\";s:11:\"Site footer\";s:6:\"cpt_id\";s:2:\"26\";}}s:22:\"liquid_custom_sidebars\";a:0:{}s:22:\"liquid_sidebar_manager\";a:0:{}s:19:\"liquid_custom_fonts\";a:2:{i:0;a:1:{s:3:\"_id\";s:7:\"e48e216\";}i:1;a:1:{s:3:\"_id\";s:7:\"de9e9a8\";}}s:37:\"liquid_blog_single_reading_time_label\";s:8:\"min read\";s:32:\"liquid_blog_single_related_title\";s:17:\"You may also like\";s:31:\"liquid_blog_single_social_links\";a:4:{i:0;a:3:{s:4:\"icon\";a:2:{s:5:\"value\";s:15:\"fab fa-facebook\";s:7:\"library\";s:9:\"fa-brands\";}s:4:\"type\";s:8:\"facebook\";s:3:\"_id\";s:7:\"f445ae1\";}i:1;a:3:{s:4:\"icon\";a:2:{s:5:\"value\";s:14:\"fab fa-twitter\";s:7:\"library\";s:9:\"fa-brands\";}s:4:\"type\";s:7:\"twitter\";s:3:\"_id\";s:7:\"3a7422e\";}i:2;a:3:{s:4:\"icon\";a:2:{s:5:\"value\";s:16:\"fab fa-pinterest\";s:7:\"library\";s:9:\"fa-brands\";}s:4:\"type\";s:9:\"pinterest\";s:3:\"_id\";s:7:\"cca60e0\";}i:3;a:3:{s:4:\"icon\";a:2:{s:5:\"value\";s:15:\"fab fa-linkedin\";s:7:\"library\";s:9:\"fa-brands\";}s:4:\"type\";s:8:\"linkedin\";s:3:\"_id\";s:7:\"5d155d5\";}}s:22:\"liquid_wc_social_links\";a:4:{i:0;a:3:{s:4:\"icon\";a:2:{s:5:\"value\";s:15:\"fab fa-facebook\";s:7:\"library\";s:9:\"fa-brands\";}s:4:\"type\";s:8:\"facebook\";s:3:\"_id\";s:7:\"80ab382\";}i:1;a:3:{s:4:\"icon\";a:2:{s:5:\"value\";s:14:\"fab fa-twitter\";s:7:\"library\";s:9:\"fa-brands\";}s:4:\"type\";s:7:\"twitter\";s:3:\"_id\";s:7:\"6399a77\";}i:2;a:3:{s:4:\"icon\";a:2:{s:5:\"value\";s:16:\"fab fa-pinterest\";s:7:\"library\";s:9:\"fa-brands\";}s:4:\"type\";s:9:\"pinterest\";s:3:\"_id\";s:7:\"a281a28\";}i:3;a:3:{s:4:\"icon\";a:2:{s:5:\"value\";s:15:\"fab fa-linkedin\";s:7:\"library\";s:9:\"fa-brands\";}s:4:\"type\";s:8:\"linkedin\";s:3:\"_id\";s:7:\"66b8674\";}}s:34:\"liquid_mailchimp_text__missing_api\";s:58:\"Please, input the MailChimp Api Key in Theme Options Panel\";s:35:\"liquid_mailchimp_text__missing_list\";s:39:\"Wrong List ID, please select a real one\";s:29:\"liquid_mailchimp_text__thanks\";s:51:\"Thank you, you have been added to our mailing list.\";s:20:\"liquid_cc_inner_size\";s:3:\"7px\";s:20:\"liquid_cc_outer_size\";s:4:\"35px\";s:35:\"liquid_cc_outer_active_border_width\";s:3:\"1px\";s:23:\"liquid_cc_label_explore\";s:7:\"Explore\";s:20:\"liquid_cc_label_drag\";s:4:\"Drag\";s:22:\"liquid_error_404_title\";s:3:\"404\";s:25:\"liquid_error_404_subtitle\";s:23:\"Looks like you are lost\";s:26:\"liquid_error_404_btn_title\";s:12:\"Back to home\";s:18:\"liquid_gdpr_button\";s:6:\"Accept\";s:19:\"liquid_gdpr_content\";s:57:\"This website uses cookies to improve your web experience.\";s:20:\"liquid_ai_max_tokens\";s:4:\"2048\";s:15:\"activeItemIndex\";i:5;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:11:\"header_logo\";a:5:{s:3:\"url\";s:66:\"https://j1brakes.com/wp-content/uploads/2023/10/J1-Dark-Logo-1.png\";s:2:\"id\";i:1910;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:18:\"header_sticky_logo\";a:5:{s:3:\"url\";s:66:\"https://j1brakes.com/wp-content/uploads/2023/10/J1-Dark-Logo-1.png\";s:2:\"id\";i:1910;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1155;s:5:\"sizes\";a:0:{}}s:17:\"container_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:21:\"space_between_widgets\";a:5:{s:6:\"column\";s:1:\"0\";s:3:\"row\";s:1:\"0\";s:8:\"isLinked\";b:1;s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;}s:18:\"active_breakpoints\";a:4:{i:0;s:15:\"viewport_mobile\";i:1;s:15:\"viewport_tablet\";i:2;s:21:\"viewport_tablet_extra\";i:3;s:15:\"viewport_laptop\";}s:21:\"global_image_lightbox\";s:0:\"\";s:23:\"lightbox_enable_counter\";s:0:\"\";s:26:\"lightbox_enable_fullscreen\";s:0:\"\";s:20:\"lightbox_enable_zoom\";s:0:\"\";s:21:\"lightbox_enable_share\";s:0:\"\";s:17:\"liquid_body_color\";s:26:\"var(--e-global-color-text)\";s:36:\"liquid_heading_typography_typography\";s:6:\"custom\";s:37:\"liquid_heading_typography_font_family\";s:7:\"Sarabun\";s:37:\"liquid_heading_typography_font_weight\";s:3:\"700\";s:37:\"liquid_heading_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:20:\"liquid_heading_color\";s:29:\"var(--e-global-color-5b35d73)\";s:31:\"liquid_h1_typography_typography\";s:6:\"custom\";s:30:\"liquid_h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:76;s:5:\"sizes\";a:0:{}}s:32:\"liquid_h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.95;s:5:\"sizes\";a:0:{}}s:31:\"liquid_h2_typography_typography\";s:6:\"custom\";s:30:\"liquid_h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:32:\"liquid_h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"liquid_h3_typography_typography\";s:6:\"custom\";s:30:\"liquid_h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:23;s:5:\"sizes\";a:0:{}}s:32:\"liquid_h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"liquid_h4_typography_typography\";s:6:\"custom\";s:30:\"liquid_h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:32:\"liquid_h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"liquid_h5_typography_typography\";s:6:\"custom\";s:30:\"liquid_h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:31:\"liquid_h6_typography_typography\";s:6:\"custom\";s:30:\"liquid_h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:32:\"liquid_h6_typography_font_weight\";s:3:\"700\";s:35:\"liquid_h6_typography_text_transform\";s:9:\"uppercase\";s:35:\"liquid_h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.05;s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:6:{s:33:\"liquid_body_typography_typography\";s:26:\"globals/typography?id=text\";s:35:\"liquid_button_typography_typography\";s:29:\"globals/typography?id=361df56\";s:34:\"liquid_gdpr_button_typo_typography\";s:0:\"\";s:35:\"liquid_gdpr_content_typo_typography\";s:0:\"\";s:24:\"liquid_gdpr_button_color\";s:25:\"globals/colors?id=654afd6\";s:21:\"body_background_color\";s:25:\"globals/colors?id=61b855f\";}s:11:\"liquid_gdpr\";s:2:\"on\";s:19:\"lqd_dark_body_color\";s:9:\"#FFFFFF99\";s:35:\"lqd_dark_body_background_background\";s:5:\"color\";s:30:\"lqd_dark_body_background_color\";s:29:\"var(--e-global-color-654afd6)\";s:24:\"lqd_dark_container_color\";s:9:\"#FFFFFF99\";s:40:\"lqd_dark_container_background_background\";s:5:\"color\";s:35:\"lqd_dark_container_background_color\";s:29:\"var(--e-global-color-654afd6)\";s:22:\"lqd_dark_heading_color\";s:29:\"var(--e-global-color-3774f73)\";s:19:\"liquid_header_cache\";s:0:\"\";s:33:\"liquid_body_typography_typography\";s:6:\"custom\";s:34:\"liquid_body_typography_font_family\";s:5:\"Inter\";s:32:\"liquid_body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:34:\"liquid_body_typography_font_weight\";s:3:\"400\";s:34:\"liquid_body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:33:\"liquid_gdpr_button_typo_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:11;s:5:\"sizes\";a:0:{}}s:35:\"liquid_gdpr_button_typo_font_weight\";s:3:\"500\";s:35:\"liquid_gdpr_button_typo_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:36:\"liquid_gdpr_button_typo_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:35:\"liquid_gdpr_content_typo_typography\";s:6:\"custom\";s:34:\"liquid_gdpr_content_typo_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:11;s:5:\"sizes\";a:0:{}}s:36:\"liquid_gdpr_content_typo_font_weight\";s:3:\"500\";s:36:\"liquid_gdpr_content_typo_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:35:\"liquid_button_typography_typography\";s:6:\"custom\";s:36:\"liquid_button_typography_font_family\";s:11:\"PP Agrandir\";s:34:\"liquid_button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:36:\"liquid_button_typography_font_weight\";s:3:\"700\";s:36:\"liquid_button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:37:\"liquid_button_typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:34:\"liquid_gdpr_button_typo_typography\";s:6:\"custom\";s:27:\"liquid_gdpr_button_bg_color\";s:9:\"#FFFFFF00\";s:16:\"background_color\";s:9:\"#FFFFFFE6\";s:23:\"liquid_gdpr_box_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"13\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"13\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:22:\"liquid_gdpr_box_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"6\";s:5:\"right\";s:1:\"6\";s:6:\"bottom\";s:1:\"6\";s:4:\"left\";s:1:\"6\";s:8:\"isLinked\";b:1;}s:26:\"box_shadow_box_shadow_type\";s:3:\"yes\";s:21:\"box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:5;s:4:\"blur\";i:10;s:6:\"spread\";i:0;s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.09)\";}s:19:\"liquid_button_color\";s:29:\"var(--e-global-color-43b07a5)\";s:28:\"liquid_button_hover_custom_x\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:26:\"body_background_background\";s:7:\"classic\";s:32:\"liquid_h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:37:\"liquid_h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:23:\"liquid_stcu_label_basic\";s:7:\"Explore\";s:23:\"liquid_stcu_label_arrow\";s:0:\"\";s:25:\"liquid_stcu_labeled_color\";s:29:\"var(--e-global-color-d5f65f9)\";s:33:\"liquid_stcu_labeled_bg_background\";s:5:\"color\";s:28:\"liquid_stcu_labeled_bg_color\";s:29:\"var(--e-global-color-47490ef)\";s:21:\"liquid_button_padding\";a:6:{s:4:\"unit\";s:2:\"em\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:16:\"header_dark_logo\";a:5:{s:3:\"url\";s:66:\"https://j1brakes.com/wp-content/uploads/2023/10/J1-Dark-Logo-1.png\";s:2:\"id\";i:1910;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:36:\"liquid_mailchimp_text__member_exists\";s:75:\"[email] is already a list member. Use PUT to insert or update list members.\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:7:\"favicon\";a:5:{s:3:\"url\";s:62:\"https://j1brakes.com/wp-content/uploads/2024/06/J1-favicon.png\";s:2:\"id\";i:1921;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:11:\"iphone_icon\";a:5:{s:3:\"url\";s:62:\"https://j1brakes.com/wp-content/uploads/2024/06/J1-favicon.png\";s:2:\"id\";i:1921;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:9:\"ipad_icon\";a:5:{s:3:\"url\";s:62:\"https://j1brakes.com/wp-content/uploads/2024/06/J1-favicon.png\";s:2:\"id\";i:1921;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:9:\"site_logo\";a:5:{s:3:\"url\";s:70:\"https://j1brakes.com/wp-content/uploads/2024/06/cropped-J1-favicon.png\";s:2:\"id\";i:1922;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Helvetica\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:9:\"Helvetica\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:9:\"Helvetica\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:9:\"Helvetica\";s:17:\"liquid_typekit_id\";s:4:\"helv\";s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";}'),
(13, 6, '_elementor_data', '[]'),
(15, 6, '_elementor_version', '3.23.3'),
(16, 6, '_wp_old_slug', 'default-kit'),
(17, 15, '_elementor_edit_mode', 'builder'),
(18, 15, '_elementor_template_type', 'container'),
(19, 15, '_elementor_version', '3.27.7'),
(20, 15, '_elementor_data', '[{\"id\":\"3b1d98bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f34b01c\"},{\"_id\":\"c5ce34b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d45663c\"},{\"_id\":\"20eeaa6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"6ba14658\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Collaboration, Parts enquires or just say hello.\",\"_id\":\"b033400\"}],\"lqd_text_tag\":\"h3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"23c04f9\"},{\"_id\":\"63fca9e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"61b82a4\"},{\"_id\":\"173f622\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"6ee22def\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d553c6e\"},{\"_id\":\"fed69dc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1b18586\"},{\"_id\":\"db6e527\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"2f93ecd\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"+971 52 601 4484\",\"button_link\":{\"url\":\"https:\\/\\/wa.link\\/gykhx5\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"akar-icons ai-whatsapp-fill\",\"library\":\"akar-icons\"},\"icon_placement\":\"start\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":false},\"color_normal\":\"#FFFFFF\",\"background_normal_liquid_background_items\":[{\"_id\":\"74a09bf\",\"background\":\"animated-gradient\",\"color\":\"#EA2427\",\"animated_gradient_colors\":\"linear-gradient(145deg, #EA2427 0%,#EA2427 16.66%)\"}],\"border_radius_normal\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"color_hover\":\"#F3F3F3\",\"background_hover_liquid_background_items\":[{\"_id\":\"e7fd6cb\",\"background\":\"animated-gradient\",\"color\":\"#000000\",\"animated_gradient_colors\":\"linear-gradient(145deg, #000000 0%,#000000 100%)\"}],\"button_icon_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7a6f8f6\"},{\"_id\":\"1059faf\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"748d863\"},{\"_id\":\"b5a59fa\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_laptop\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_position_laptop\":\"center center\",\"_background_gradient_position_tablet_extra\":\"center center\",\"_background_gradient_position_tablet\":\"center center\",\"_background_gradient_position_mobile\":\"center center\",\"_background_hover_color_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_laptop\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_position_laptop\":\"center center\",\"_background_hover_gradient_position_tablet_extra\":\"center center\",\"_background_hover_gradient_position_tablet\":\"center center\",\"_background_hover_gradient_position_mobile\":\"center center\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":false}]'),
(22, 15, '_wp_page_template', 'default'),
(23, 16, '_elementor_edit_mode', 'builder'),
(24, 16, '_elementor_template_type', 'container'),
(25, 16, '_elementor_version', '3.16.6');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(26, 16, '_elementor_data', '[{\"id\":\"27aa70d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a11d1a2\"},{\"_id\":\"2f92ecf\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ce40148\"},{\"_id\":\"8ae93cd\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"space-around\",\"flex_justify_content_mobile_extra\":\"space-between\",\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_image\":{\"id\":61,\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/square-pattern.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":715,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"663ed2c2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":42,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"30\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"120bfcb\"},{\"_id\":\"623d057\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1a50f0d\"},{\"_id\":\"89ab19e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c055b2f\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Collaboration, work enquires or just say hello.\\n\",\"_id\":\"cedf840\"}],\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":13,\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a79fb2e\"},{\"_id\":\"357288b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"58ea499\"},{\"_id\":\"fccd332\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"30e4689\",\"elType\":\"widget\",\"settings\":{\"title\":\"Drop us a line\",\"lqd_outline_glow_effect\":\"effect-1\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_glow_width\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"lqd_glow_color_primary\":\"var(--e-global-color-primary)\",\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"56c2658\"},{\"_id\":\"333664d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1a8120f\"},{\"_id\":\"0640425\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"border_radius_normal\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"lqd-button\"},{\"id\":\"7f95fe52\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Interior design is the art and science of enhancing the interiors.\\n\",\"_id\":\"4cec869\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lqd_text_typography_font_style\":\"italic\",\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"23c01ed\"},{\"_id\":\"d89ce36\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"16ee15d\"},{\"_id\":\"e9b9284\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"46eceda6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"979382c\"},{\"_id\":\"2d69b45\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b8e8700\"},{\"_id\":\"2aea717\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"515da5ce\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"London\",\"_id\":\"e0fc2f5\"}],\"lqd_text_tag\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ebed278\"},{\"_id\":\"9a72592\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7114d00\"},{\"_id\":\"372147b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"502af9f2\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"+) 22 256 7890\",\"_id\":\"e0fc2f5\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"lqd_text_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ebed278\"},{\"_id\":\"9a72592\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7114d00\"},{\"_id\":\"372147b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"eeb66bb\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"architecture@hub.com\",\"_id\":\"e0fc2f5\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"lqd_text_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ebed278\"},{\"_id\":\"9a72592\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7114d00\"},{\"_id\":\"372147b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"4a95196b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"979382c\"},{\"_id\":\"2d69b45\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b8e8700\"},{\"_id\":\"2aea717\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"3f43db89\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Find us\",\"_id\":\"e0fc2f5\"}],\"lqd_text_tag\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ebed278\"},{\"_id\":\"9a72592\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7114d00\"},{\"_id\":\"372147b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"45f20039\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"LogiCorp Solutions, 456 Supply Chain Blvd, Warehouse #7, Chicago, IL, 60601\",\"_id\":\"e0fc2f5\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"lqd_text_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ebed278\"},{\"_id\":\"9a72592\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7114d00\"},{\"_id\":\"372147b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"1cc0bf56\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"_id\":\"b037c2a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"66b4758\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"de88e61\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#00000000\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#97979726\",\"border_radius\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"99\",\"bottom\":\"99\",\"left\":\"99\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"74662ec\"},{\"_id\":\"e8b9907\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"05dc5b3\"},{\"_id\":\"c38a065\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width\":\"inherit\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"globals\\/colors?id=5b35d73\",\"hover_border_color\":\"globals\\/colors?id=47490ef\",\"hover_secondary_color\":\"globals\\/colors?id=d5f65f9\",\"hover_primary_color\":\"globals\\/colors?id=47490ef\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"6436529e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"15***1697637155575\",\"_element_width\":\"initial\",\"_element_width_mobile_extra\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ab814e\"},{\"_id\":\"73122e9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0152507\"},{\"_id\":\"367bee8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}]'),
(28, 16, '_wp_page_template', 'default'),
(29, 17, '_wp_page_template', 'elementor_canvas'),
(30, 17, 'metform_form__form_setting', 'a:20:{s:10:\"form_title\";s:28:\"Contact Form – Outline\";s:15:\"success_message\";s:39:\"Thank you! Form submitted successfully.\";s:13:\"store_entries\";s:1:\"1\";s:11:\"entry_title\";s:15:\"Entry # [mf_id]\";s:11:\"redirect_to\";s:0:\"\";s:18:\"user_email_subject\";s:0:\"\";s:15:\"user_email_from\";s:0:\"\";s:19:\"user_email_reply_to\";s:0:\"\";s:15:\"user_email_body\";s:0:\"\";s:25:\"enable_admin_notification\";s:1:\"1\";s:19:\"admin_email_subject\";s:9:\"J1 Brakes\";s:14:\"admin_email_to\";s:17:\"info@j1brakes.com\";s:16:\"admin_email_from\";s:15:\"admin@wpmet.com\";s:20:\"admin_email_reply_to\";s:0:\"\";s:16:\"admin_email_body\";s:0:\"\";s:20:\"mf_hubspot_form_guid\";s:0:\"\";s:24:\"mf_hubspot_form_portalId\";s:0:\"\";s:20:\"mf_mailchimp_list_id\";s:0:\"\";s:16:\"mf_slack_webhook\";s:0:\"\";s:9:\"form_type\";s:12:\"general-form\";}'),
(31, 17, '_elementor_edit_mode', 'builder'),
(32, 17, '_metform_cloned_id', 'template-0'),
(33, 17, '_elementor_template_type', 'wp-post'),
(34, 17, '_elementor_version', '3.16.6');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(35, 17, '_elementor_data', '[{\"id\":\"641fc3b\",\"elType\":\"container\",\"settings\":{\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1c095c7\"},{\"_id\":\"70930d0\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"71b9623\"},{\"_id\":\"174cfc2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_gap\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"c08d992\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"First name\",\"mf_input_placeholder\":\"First name\",\"mf_input_required\":\"yes\",\"mf_input_validation_type\":\"by_character_length\",\"mf_input_min_length\":2,\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF\",\"mf_input_border_border\":\"solid\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"82ab7b2\"},{\"_id\":\"cd1a011\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e8a2c54\"},{\"_id\":\"e4b7f98\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=586305e\"},\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#0000001A\",\"mf_input_label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_warning_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_position_mobile_extra\":\"\",\"mf_input_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_repeat_mobile_extra\":\"\",\"mf_input_background_size_mobile_extra\":\"\",\"mf_input_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_position_mobile_extra\":\"\",\"mf_input_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_repeat_mobile_extra\":\"\",\"mf_input_background_hover_size_mobile_extra\":\"\",\"mf_input_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_hover_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_focus_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_position_mobile_extra\":\"\",\"mf_input_background_focus_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_repeat_mobile_extra\":\"\",\"mf_input_background_focus_size_mobile_extra\":\"\",\"mf_input_background_focus_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_focus_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_focus_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_typgraphy_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_border_radius_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"mf-listing-fname\"},{\"id\":\"a6212a0\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Last Name\",\"mf_input_name\":\"mf-listing-lname\",\"mf_input_placeholder\":\"Last Name\",\"mf_input_required\":\"yes\",\"mf_input_validation_type\":\"by_character_length\",\"mf_input_min_length\":2,\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF\",\"mf_input_border_border\":\"solid\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"82ab7b2\"},{\"_id\":\"cd1a011\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e8a2c54\"},{\"_id\":\"e4b7f98\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=586305e\"},\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#0000001A\",\"mf_input_label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_warning_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_position_mobile_extra\":\"\",\"mf_input_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_repeat_mobile_extra\":\"\",\"mf_input_background_size_mobile_extra\":\"\",\"mf_input_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_position_mobile_extra\":\"\",\"mf_input_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_repeat_mobile_extra\":\"\",\"mf_input_background_hover_size_mobile_extra\":\"\",\"mf_input_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_hover_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_focus_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_position_mobile_extra\":\"\",\"mf_input_background_focus_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_repeat_mobile_extra\":\"\",\"mf_input_background_focus_size_mobile_extra\":\"\",\"mf_input_background_focus_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_focus_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_focus_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_typgraphy_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_border_radius_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"mf-listing-lname\"},{\"id\":\"e04d610\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"you@company.com\",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF\",\"mf_input_border_border\":\"solid\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"82ab7b2\"},{\"_id\":\"cd1a011\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e8a2c54\"},{\"_id\":\"e4b7f98\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=586305e\"},\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#0000001A\",\"mf_input_label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_warning_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_position_mobile_extra\":\"\",\"mf_input_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_repeat_mobile_extra\":\"\",\"mf_input_background_size_mobile_extra\":\"\",\"mf_input_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_position_mobile_extra\":\"\",\"mf_input_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_repeat_mobile_extra\":\"\",\"mf_input_background_hover_size_mobile_extra\":\"\",\"mf_input_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_hover_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_focus_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_position_mobile_extra\":\"\",\"mf_input_background_focus_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_repeat_mobile_extra\":\"\",\"mf_input_background_focus_size_mobile_extra\":\"\",\"mf_input_background_focus_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_focus_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_focus_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_typgraphy_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_border_radius_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_error_message_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_help_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"mf-email\"},{\"id\":\"5f25863\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Phone number\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"+1 (111) 222 3344\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF\",\"mf_input_border_border\":\"solid\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"82ab7b2\"},{\"_id\":\"cd1a011\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e8a2c54\"},{\"_id\":\"e4b7f98\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=586305e\"},\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#0000001A\",\"mf_input_label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_warning_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_position_mobile_extra\":\"\",\"mf_input_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_repeat_mobile_extra\":\"\",\"mf_input_background_size_mobile_extra\":\"\",\"mf_input_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_position_mobile_extra\":\"\",\"mf_input_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_repeat_mobile_extra\":\"\",\"mf_input_background_hover_size_mobile_extra\":\"\",\"mf_input_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_hover_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_focus_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_position_mobile_extra\":\"\",\"mf_input_background_focus_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_repeat_mobile_extra\":\"\",\"mf_input_background_focus_size_mobile_extra\":\"\",\"mf_input_background_focus_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_focus_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_focus_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_typgraphy_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_border_radius_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"mf-telephone\"},{\"id\":\"b8b2200\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Message\",\"mf_input_name\":\"mf-textarea\",\"mf_input_placeholder\":\"\",\"mf_input_required\":\"yes\",\"mf_input_validation_type\":\"by_word_length\",\"mf_input_min_length\":5,\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF\",\"mf_input_border_border\":\"solid\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"82ab7b2\"},{\"_id\":\"cd1a011\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e8a2c54\"},{\"_id\":\"e4b7f98\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=586305e\"},\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#0000001A\",\"mf_input_label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_warning_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_position_mobile_extra\":\"\",\"mf_input_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_repeat_mobile_extra\":\"\",\"mf_input_background_size_mobile_extra\":\"\",\"mf_input_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_position_mobile_extra\":\"\",\"mf_input_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_repeat_mobile_extra\":\"\",\"mf_input_background_hover_size_mobile_extra\":\"\",\"mf_input_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_hover_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_focus_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_position_mobile_extra\":\"\",\"mf_input_background_focus_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_repeat_mobile_extra\":\"\",\"mf_input_background_focus_size_mobile_extra\":\"\",\"mf_input_background_focus_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_focus_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_focus_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_typgraphy_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_border_radius_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"44bd514\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Send Message\",\"mf_hidden_input\":[],\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3ae2ae8\"},{\"_id\":\"bc00ba0\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"6da853d\"},{\"_id\":\"5358890\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=primary\",\"mf_btn_text_color\":\"globals\\/colors?id=a606f90\",\"mf_btn_typography_typography\":\"\",\"mf_btn_hover_color\":\"globals\\/colors?id=d5f65f9\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=47490ef\"},\"mf_btn_align\":\"justify\",\"mf_btn_align_mobile_extra\":\"\",\"mf_btn_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_text_color_mobile_extra\":\"\",\"mf_btn_bg_color_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_position_mobile_extra\":\"\",\"mf_btn_bg_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_color_repeat_mobile_extra\":\"\",\"mf_btn_bg_color_size_mobile_extra\":\"\",\"mf_btn_bg_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_color_slideshow_background_size_mobile_extra\":\"\",\"mf_btn_bg_color_slideshow_background_position_mobile_extra\":\"\",\"mf_btn_hover_color_mobile_extra\":\"\",\"mf_btn_bg_hover_color_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_position_mobile_extra\":\"\",\"mf_btn_bg_hover_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_hover_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_hover_color_repeat_mobile_extra\":\"\",\"mf_btn_bg_hover_color_size_mobile_extra\":\"\",\"mf_btn_bg_hover_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_hover_color_slideshow_background_size_mobile_extra\":\"\",\"mf_btn_bg_hover_color_slideshow_background_position_mobile_extra\":\"\",\"mf_btn_border_style_mobile_extra\":\"\",\"mf_btn_border_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_border_color_mobile_extra\":\"\",\"mf_btn_hover_border_color_mobile_extra\":\"\",\"mf_btn_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_normal_icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_normal_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_normal_icon_vertical_align_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065000000000000002,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(37, 23, '_wp_page_template', 'default'),
(38, 23, '_elementor_edit_mode', 'builder'),
(39, 23, '_elementor_template_type', 'wp-post'),
(40, 23, '_elementor_version', '3.27.7'),
(41, 23, '_elementor_data', '[{\"id\":\"037d59a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0a77b9d\"},{\"_id\":\"20bc205\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"85437d5\"},{\"_id\":\"40e0e1c\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_sticky_container_bg_background\":\"classic\",\"lqd_sticky_container_bg_color\":\"#FFFFFF\",\"lqd_sticky_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"flex_wrap_mobile\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"18a3989\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8c77bf6\"},{\"_id\":\"d71a488\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4bd4a82\"},{\"_id\":\"a2ded87\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"15\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":15},\"width_mobile\":{\"unit\":\"%\",\"size\":45.9},\"_flex_size_mobile\":\"grow\",\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"acd6269\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4677b82\"},{\"_id\":\"bf49b89\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fa41980\"},{\"_id\":\"32c204e\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"width_mobile\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"flex_wrap_mobile\":\"nowrap\",\"_flex_size_mobile\":\"none\",\"flex_justify_content_mobile\":\"center\",\"_flex_size_tablet_extra\":\"grow\"},\"elements\":[{\"id\":\"2f4f440\",\"elType\":\"widget\",\"settings\":{\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"cfa6d29\"},{\"_id\":\"fa43d14\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dcc1e3d\"},{\"_id\":\"187caa7\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"uselogo\":\"\",\"image\":{\"url\":\"https:\\/\\/j1brakes.com\\/wp-content\\/uploads\\/2024\\/02\\/j-1_brakes_white.png\",\"id\":2293,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"usestickylogo\":\"\",\"sticky_image\":{\"url\":\"https:\\/\\/j1brakes.com\\/wp-content\\/uploads\\/2024\\/02\\/j-1_brakes.png\",\"id\":2309,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"lqd_site_logo\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bcd9565\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8c77bf6\"},{\"_id\":\"d71a488\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4bd4a82\"},{\"_id\":\"a2ded87\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"37\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":37},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"30\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4a2ed72\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"primary\",\"custom_menu\":[{\"label\":\"Home\",\"link\":{\"url\":\"#home\"},\"_id\":\"f81035b\"},{\"label\":\"About\",\"link\":{\"url\":\"#about\"},\"_id\":\"bd2f8c1\"},{\"label\":\"Services\",\"link\":{\"url\":\"#services\"},\"_id\":\"6dad7e5\"}],\"individual_item_styles\":[],\"trigger_text\":\"Menu\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"eb86627\"},{\"_id\":\"bd54cc7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"603fa66\"},{\"_id\":\"1f2bad8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"ul_top_gap\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"li_top_typography_typography\":\"globals\\/typography?id=d19fa00\",\"trigger_typography_typography\":\"globals\\/typography?id=8cbff5c\"},\"localscroll\":\"yes\",\"li_top_color\":\"#FFFFFF4F\",\"li_top_color_hover\":\"#FFFFFF\",\"li_top_color_active\":\"#FFFFFF\",\"lqd_sticky_li_top_color\":\"#00000059\",\"lqd_sticky_li_top_color_hover\":\"#000000\",\"lqd_sticky_li_top_color_active\":\"#000000\",\"items_orientation_tablet\":\"column\",\"items_h_align_tablet\":\"center\",\"mobile_dropdown\":\"yes\",\"mobile_dropdown_breakpoint_tablet\":\"1024px\",\"ul_top_gap_tablet_extra\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ul_top_gap_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"mobile_dropdown_width_tablet_tablet\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"mobile_dropdown_width_tablet_mobile\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"mobile_dropdown_paddingtablet_extra_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"mobile_dropdown_colortablet_extra\":\"var(--e-global-color-6ad72d6)\",\"trigger_text_placement\":\"start\",\"trigger_color\":\"var(--e-global-color-d5f65f9)\",\"bars_width_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_flex_order_tablet\":\"end\",\"ul_top_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"mobile_dropdown_colortablet_extra_hover\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_colortablet_extra_active\":\"var(--e-global-color-155d4ae)\",\"li_top_color_tablet\":\"#FFFFFF7F\",\"ul_top_background_background\":\"color\",\"ul_top_background_color_tablet\":\"var(--e-global-color-084d856)\",\"ul_top_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"li_top_color_hover_tablet\":\"var(--e-global-color-155d4ae)\",\"li_top_color_active_tablet\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_orientation_h_tablet\":\"end\",\"mobile_dropdown_offset_x_end_tablet_mobile\":{\"unit\":\"px\",\"size\":-5,\"sizes\":[]},\"localscroll_offset\":{\"unit\":\"px\",\"size\":77,\"sizes\":[]},\"ul_top_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_sticky_li_top_color_tablet\":\"var(--e-global-color-6ad72d6)\",\"lqd_sticky_li_top_color_hover_tablet\":\"var(--e-global-color-155d4ae)\",\"lqd_sticky_li_top_color_active_tablet\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_offset_y_tablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_color\":\"var(--e-global-color-5b35d73)\",\"items_h_align_mobile\":\"center\",\"mobile_dropdown_offset_x_tablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_tablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_tablet_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"ul_top_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-menu\"}],\"isInner\":true},{\"id\":\"87894da\",\"elType\":\"widget\",\"settings\":{\"lqd_predefined_style_button\":\"filled-rounded\",\"title\":\"CATALOGUE\",\"button_link\":{\"url\":\"https:\\/\\/index.j1brakes.com\\/catalogue\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"lqd_outline_glow_effect\":\"effect-1\",\"button_dimension\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_laptop\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_tablet_extra\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_tablet\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_mobile\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"padding\":{\"top\":\"0.5\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"unit\":\"em\",\"isLinked\":false},\"color_normal\":\"#ffffff\",\"background_normal_liquid_background_items\":[{\"background\":\"animated-gradient\",\"color\":\"var(--e-global-color-primary)\",\"_id\":\"a7de3da\",\"animated_gradient_colors\":\"linear-gradient(145deg, #EA2427 0%,#EA2427 16.66%,#EA2427 33.32%)\"}],\"border_radius_normal\":{\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"unit\":\"px\",\"isLinked\":true},\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f72511e\"},{\"_id\":\"836ad5e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c1e6eb6\"},{\"_id\":\"08a3d89\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"hide_mobile\":\"hidden-mobile\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-button\"},{\"id\":\"ba07be1\",\"elType\":\"widget\",\"settings\":{\"modal_type\":\"box\",\"modal\":\"15\",\"trigger_type\":\"icon\",\"trigger_text\":\"\",\"trigger_color\":\"#FFFFFF\",\"trigger_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"bars_shape_dimension\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"57\",\"height\":\"57\"},\"bars_shape_background_background\":\"color\",\"bars_shape_background_color\":\"var(--e-global-color-5b35d73)\",\"bars_shape_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"34931d4\"},{\"_id\":\"dadb4b9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e253301\"},{\"_id\":\"25c6543\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"modal_orientation_h\":\"end\",\"modal_offset_x_end\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"modal_inner_background_background\":\"color\",\"modal_inner_background_color\":\"#FFFFFF\",\"modal_inner_dimensions\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_mobile_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_close_btn_offset_x_end\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"modal_inner_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"45\",\"bottom\":\"30\",\"left\":\"45\",\"isLinked\":false},\"modal_inner_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"modal_inner_box_shadow_box_shadow_type\":\"yes\",\"modal_inner_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":65,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"modal_inner_width\":{\"unit\":\"px\",\"size\":595,\"sizes\":[]},\"modal_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"modal_inner_width_mobile\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"modal_inner_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"modal_orientation_h_mobile_extra\":\"\",\"modal_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_orientation_v_mobile_extra\":\"\",\"modal_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_h_mobile_extra\":\"\",\"modal_close_btn_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_v_mobile_extra\":\"\",\"modal_close_btn_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_justify_content_mobile_extra\":\"\",\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_first_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_first_mobile_extra\":\"\",\"bars_width_second_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_second_mobile_extra\":\"\",\"bars_width_third_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_third_mobile_extra\":\"\",\"bars_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"bars_shape_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"selected_icon\":{\"value\":\"akar-icons ai-whatsapp-fill\",\"library\":\"akar-icons\"},\"trigger_hover_effect\":\"scale-up\",\"bars_shape_background_hover_background\":\"color\",\"bars_shape_background_hover_color\":\"var(--e-global-color-primary)\",\"dark_modal_inner_background_background\":\"color\",\"dark_modal_inner_background_color\":\"var(--e-global-color-654afd6)\",\"modal_inner_typography_typography\":\"custom\",\"modal_inner_typography_font_size\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-modal\"},{\"id\":\"64cbce2\",\"elType\":\"widget\",\"settings\":{\"text\":\"scroll to top\",\"lqd_adaptive_color\":\"yes\",\"link_color\":\"var(--e-global-color-5b35d73)\",\"dark_link_color\":\"var(--e-global-color-3774f73)\",\"_position\":\"fixed\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_offset_y_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de07ec3\"},{\"_id\":\"7307299\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ccd892c\"},{\"_id\":\"dc2382c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"link_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"hide_mobile\":\"hidden-mobile\",\"_offset_x\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-scroll-progress\"}],\"isInner\":false}]'),
(43, 23, '_elementor_page_settings', 'a:24:{s:13:\"header_sticky\";s:3:\"yes\";s:14:\"header_overlay\";s:3:\"yes\";s:20:\"header_sticky_offset\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-1;s:5:\"sizes\";a:0:{}}s:31:\"lqd_title_wrapper_bg_background\";s:0:\"\";s:26:\"lqd_title_wrapper_bg_color\";s:0:\"\";s:26:\"lqd_title_wrapper_bg_image\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:29:\"lqd_title_wrapper_bg_position\";s:0:\"\";s:25:\"lqd_title_wrapper_bg_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:25:\"lqd_title_wrapper_bg_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:31:\"lqd_title_wrapper_bg_attachment\";s:0:\"\";s:27:\"lqd_title_wrapper_bg_repeat\";s:0:\"\";s:25:\"lqd_title_wrapper_bg_size\";s:0:\"\";s:29:\"lqd_title_wrapper_bg_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:39:\"lqd_title_wrapper_bg_overlay_background\";s:0:\"\";s:34:\"lqd_title_wrapper_bg_overlay_color\";s:0:\"\";s:34:\"lqd_title_wrapper_bg_overlay_image\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:37:\"lqd_title_wrapper_bg_overlay_position\";s:0:\"\";s:33:\"lqd_title_wrapper_bg_overlay_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:33:\"lqd_title_wrapper_bg_overlay_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:39:\"lqd_title_wrapper_bg_overlay_attachment\";s:0:\"\";s:35:\"lqd_title_wrapper_bg_overlay_repeat\";s:0:\"\";s:33:\"lqd_title_wrapper_bg_overlay_size\";s:0:\"\";s:37:\"lqd_title_wrapper_bg_overlay_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:22:\"lqd_sizeguide_btn_text\";s:10:\"Size Guide\";}'),
(44, 23, '_wp_old_slug', 'header'),
(45, 23, '_wp_old_slug', 'header-basic'),
(46, 26, '_wp_page_template', 'default'),
(47, 26, '_elementor_edit_mode', 'builder'),
(48, 26, '_elementor_template_type', 'wp-post'),
(49, 26, '_elementor_version', '3.27.7');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(50, 26, '_elementor_data', '[{\"id\":\"1ded3fd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e3de4c6\"},{\"_id\":\"a8dc86a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"64230e5\"},{\"_id\":\"4c88c10\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=76df9ec\"}},\"elements\":[{\"id\":\"2b4636e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"038c3e7\"},{\"_id\":\"224c361\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b70a7d2\"},{\"_id\":\"f2706cc\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"},\"flex_align_items\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4f2a5c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4677b82\"},{\"_id\":\"bf49b89\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fa41980\"},{\"_id\":\"32c204e\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"flex_wrap_mobile\":\"nowrap\",\"_flex_size_mobile\":\"none\",\"_flex_size_tablet_extra\":\"grow\",\"width_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]}},\"elements\":[{\"id\":\"ea54e81\",\"elType\":\"widget\",\"settings\":{\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"cfa6d29\"},{\"_id\":\"fa43d14\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dcc1e3d\"},{\"_id\":\"187caa7\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/02\\/j-1_brakes.png\",\"id\":2309,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"lqd_site_logo\"},{\"id\":\"c70e82a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e27d6c5\"},{\"_id\":\"716628a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"90d3fc0\"},{\"_id\":\"f89f2a3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7be55d0\",\"elType\":\"container\",\"settings\":{\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e4fad2d\"},{\"_id\":\"8b4e18f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84588bd\"},{\"_id\":\"4703c29\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2751315\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Quick Links\",\"_id\":\"09fb39f\"}],\"lqd_text_tag\":\"h5\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7b9f70d\"},{\"_id\":\"3aefd29\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"63ef764\"},{\"_id\":\"9efb238\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ad93f5e\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"footer-j1\",\"custom_menu\":[{\"label\":\"Home\",\"link\":{\"url\":\"#home\"},\"_id\":\"cfe2df9\"},{\"label\":\"About\",\"link\":{\"url\":\"#about\"},\"_id\":\"664d199\"},{\"label\":\"Services\",\"link\":{\"url\":\"#services\"},\"_id\":\"eefe6b1\"}],\"items_orientation\":\"column\",\"individual_item_styles\":[],\"trigger_text\":\"Menu\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2cbf3d4\"},{\"_id\":\"d667dc2\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"6d3b492\"},{\"_id\":\"058e337\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"ul_top_gap\":{\"unit\":\"em\",\"size\":0.75,\"sizes\":[]},\"ul_top_gap_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ul_top_gap_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ul_top_gap_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ul_top_gap_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"li_top_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"li_top_color\":\"var(--e-global-color-204e3eb)\",\"li_top_color_hover\":\"var(--e-global-color-5eea121)\",\"li_top_color_hover_tablet_extra\":\"var(--e-global-color-primary)\",\"li_top_color_hover_tablet\":\"var(--e-global-color-primary)\",\"li_top_color_hover_mobile\":\"var(--e-global-color-primary)\",\"badge_color\":\"var(--e-global-color-5b35d73)\",\"badge_background_background\":\"color\",\"badge_background_color\":\"var(--e-global-color-61b855f)\",\"badge_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"__globals__\":{\"li_top_typography_typography\":\"globals\\/typography?id=43df7c7\"}},\"elements\":[],\"widgetType\":\"lqd-menu\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"337b2d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4bc15be\"},{\"_id\":\"7eb2be0\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3f6fd21\"},{\"_id\":\"f52c116\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3c8f3f7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Contact\",\"_id\":\"09fb39f\"}],\"lqd_text_tag\":\"h5\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7b9f70d\"},{\"_id\":\"3aefd29\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"63ef764\"},{\"_id\":\"9efb238\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"6bad692\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Have a question?\",\"_id\":\"6531caf\"}],\"lqd_text_tag\":\"p\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a9b9305\"},{\"_id\":\"5008873\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"721cef1\"},{\"_id\":\"f6bc15a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=9bfb218\"},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"f199df0\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"info@j1brakes.com\",\"_id\":\"65e412a\",\"item_link\":{\"url\":\"mailto:info@j1brakes.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"}}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"77bd45c\"},{\"_id\":\"faf373d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f692330\"},{\"_id\":\"7a9b587\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=058bd07\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"6b8dc23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4bc15be\"},{\"_id\":\"7eb2be0\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3f6fd21\"},{\"_id\":\"f52c116\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a73d944\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Follow Us\",\"_id\":\"09fb39f\"}],\"lqd_text_tag\":\"h5\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7b9f70d\"},{\"_id\":\"3aefd29\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"63ef764\"},{\"_id\":\"9efb238\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"c689b3e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"85aa391\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"116155d\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f16a793\"},{\"_id\":\"3e4b2db\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4d78c90\"},{\"_id\":\"905b43c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"globals\\/colors?id=1dbb2b1\",\"hover_secondary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"c6bec51\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f67a592\"},{\"_id\":\"2c26323\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b15686d\"},{\"_id\":\"edc5c2e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f861e9c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a8b4e3c\"},{\"_id\":\"baaf21d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e03c91e\"},{\"_id\":\"697b866\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c0adff9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"container_type\":\"grid\",\"grid_outline\":\"\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":1,\"sizes\":[]},\"grid_columns_grid_mobile\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"grid_rows_grid\":{\"unit\":\"fr\",\"size\":1,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#EC242B\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"57fbfe4\"},{\"_id\":\"3168054\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"896613d\"},{\"_id\":\"58c431c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"boxed_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]}},\"elements\":[{\"id\":\"5bf4f9f\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"lqd_text_content\":[{\"text\":\"J-1 Brakes\",\"_id\":\"3cbd7bc\"},{\"_id\":\"5b6f465\",\"text\":\"\\u00a9 | All Rights Reserved\"}],\"lqd_text_tag\":\"h3\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-155d4ae)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_laptop\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_align_self_laptop\":\"flex-start\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0fe9284\"},{\"_id\":\"68264cb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"509ad26\"},{\"_id\":\"eeacffa\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_alignment\":\"center\",\"lqd_text_alignment_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_order\":\"start\"},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":false}]'),
(53, 272, '_elementor_edit_mode', 'builder'),
(54, 272, '_elementor_template_type', 'container'),
(55, 272, '_elementor_version', '3.17.3'),
(56, 272, '_wp_page_template', 'default'),
(57, 272, '_elementor_data', '[{\"id\":\"3a6cf49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d9aa170\"},{\"_id\":\"2070078\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0bcb19e\"},{\"_id\":\"cc3f27c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f78d186\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[{\"_id\":\"d89e06c\",\"background\":\"image\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/ocean-freight.jpg\",\"id\":275,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"size\":\"cover\"}],\"title\":\"Road Freight\",\"subtitle\":\"\",\"description\":\"
Experience flawless logistics operations as you embark on a journey with us.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"01cbba7\"}],\"show_button\":\"yes\",\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f7febe0\"},{\"_id\":\"23d6c3a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"5a3ef91\"},{\"_id\":\"47ef9e7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=058bd07\"},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.05,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ib_button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":false}]'),
(59, 656, '_wp_page_template', 'elementor_canvas'),
(60, 656, 'metform_form__form_setting', 'a:19:{s:10:\"form_title\";s:33:\"Contact form – Full outline\";s:15:\"success_message\";s:39:\"Thank you! Form submitted successfully.\";s:11:\"entry_title\";s:15:\"Entry # [mf_id]\";s:11:\"redirect_to\";s:0:\"\";s:18:\"user_email_subject\";s:22:\"J1 Brakes Contact Form\";s:15:\"user_email_from\";s:18:\"j1brakes@gmail.com\";s:19:\"user_email_reply_to\";s:0:\"\";s:15:\"user_email_body\";s:0:\"\";s:25:\"enable_admin_notification\";s:1:\"1\";s:19:\"admin_email_subject\";s:18:\"Email Notification\";s:14:\"admin_email_to\";s:79:\", , \";s:16:\"admin_email_from\";s:18:\"admin@j1brakes.com\";s:20:\"admin_email_reply_to\";s:0:\"\";s:16:\"admin_email_body\";s:0:\"\";s:20:\"mf_hubspot_form_guid\";s:0:\"\";s:24:\"mf_hubspot_form_portalId\";s:0:\"\";s:20:\"mf_mailchimp_list_id\";s:0:\"\";s:16:\"mf_slack_webhook\";s:0:\"\";s:9:\"form_type\";s:12:\"general-form\";}'),
(61, 656, '_elementor_edit_mode', 'builder'),
(62, 656, '_metform_cloned_id', 'template-0'),
(63, 656, '_elementor_template_type', 'wp-post'),
(64, 656, '_elementor_version', '3.23.3'),
(65, 656, '_elementor_data', '[{\"id\":\"a402ef7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"dcfbc69\"},{\"_id\":\"715e421\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"711445b\"},{\"_id\":\"dd1aabb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"9f3c1a6\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Nice to meet you\",\"mf_input_placeholder\":\"What\\u2019s your name?\",\"mf_input_required\":\"yes\",\"mf_input_validation_type\":\"by_word_length\",\"mf_input_min_length\":2,\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"none\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a63767c\"},{\"_id\":\"3124581\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9027e60\"},{\"_id\":\"45ded7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=5b35d73\",\"mf_input_label_typography_typography\":\"\",\"mf_input_typgraphy_typography\":\"\",\"mf_input_place_holder_typography_typography\":\"\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"mf_input_label_color\":\"#1B1B1B\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"500\",\"mf_input_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"500\",\"mf_input_typgraphy_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_typgraphy_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_input_place_holder_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_place_holder_typography_font_weight\":\"500\",\"mf_input_place_holder_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"mf-listing-fname\"},{\"id\":\"e5d399c\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email address\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Enter your email address\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_color\":\"#1B1B1B\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"500\",\"mf_input_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"none\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"500\",\"mf_input_typgraphy_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_typgraphy_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_input_place_holder_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_place_holder_typography_font_weight\":\"500\",\"mf_input_place_holder_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a63767c\"},{\"_id\":\"3124581\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9027e60\"},{\"_id\":\"45ded7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=5b35d73\",\"mf_input_label_typography_typography\":\"\",\"mf_input_typgraphy_typography\":\"\",\"mf_input_place_holder_typography_typography\":\"\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"mf-email\"},{\"id\":\"7d2aacd\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Optional\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"Your phone number\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_color\":\"#1B1B1B\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"500\",\"mf_input_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"none\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"500\",\"mf_input_typgraphy_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_typgraphy_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_input_place_holder_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_place_holder_typography_font_weight\":\"500\",\"mf_input_place_holder_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a63767c\"},{\"_id\":\"3124581\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9027e60\"},{\"_id\":\"45ded7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=5b35d73\",\"mf_input_label_typography_typography\":\"\",\"mf_input_typgraphy_typography\":\"\",\"mf_input_place_holder_typography_typography\":\"\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"mf-telephone\"},{\"id\":\"520b38f\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Subject\",\"mf_input_name\":\"mf-subject\",\"mf_input_placeholder\":\"How can we help you?\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_color\":\"#1B1B1B\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"500\",\"mf_input_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"none\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"500\",\"mf_input_typgraphy_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_typgraphy_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_input_place_holder_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_place_holder_typography_font_weight\":\"500\",\"mf_input_place_holder_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a63767c\"},{\"_id\":\"3124581\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9027e60\"},{\"_id\":\"45ded7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=5b35d73\",\"mf_input_label_typography_typography\":\"\",\"mf_input_typgraphy_typography\":\"\",\"mf_input_place_holder_typography_typography\":\"\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"mf-text\"},{\"id\":\"54b9b11\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Details\",\"mf_input_name\":\"mf-textarea\",\"mf_input_placeholder\":\"Tell us more \",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_color\":\"#1B1B1B\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"500\",\"mf_input_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"none\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"500\",\"mf_input_typgraphy_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_typgraphy_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_input_place_holder_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_place_holder_typography_font_weight\":\"500\",\"mf_input_place_holder_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a63767c\"},{\"_id\":\"3124581\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9027e60\"},{\"_id\":\"45ded7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"mf_input_label_color\":\"globals\\/colors?id=5b35d73\",\"mf_input_label_typography_typography\":\"\",\"mf_input_typgraphy_typography\":\"\",\"mf_input_place_holder_typography_typography\":\"\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"ebef704\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af9f2a3\"},{\"_id\":\"4eedf81\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ea4ee01\"},{\"_id\":\"ef8c8e9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"3f311ee\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"\",\"mf_input_name\":\"mf-listing-optin\",\"mf_listing_optin_option_text\":\"I am bound by the terms of the Service I accept Privacy Policy\",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_listing_optin_option_color\":\"#9C9C9C\",\"mf_listing_optin_option_icon_color\":\"#C9C9C9\",\"mf_listing_optin_typgraphy_text_typography\":\"custom\",\"mf_listing_optin_typgraphy_text_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_listing_optin_typgraphy_text_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"mf_listing_optin_typgraphy_text_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8c6fb14\"},{\"_id\":\"cb72dcf\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8e5f199\"},{\"_id\":\"66670c4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_listing_optin_typgraphy_text_typography\":\"globals\\/typography?id=058bd07\",\"mf_listing_optin_option_color\":\"\",\"mf_listing_optin_option_icon_color\":\"globals\\/colors?id=2ed0690\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"mf-listing-optin\"},{\"id\":\"95adb4a\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Submit\",\"mf_btn_align\":\"justify\",\"mf_hidden_input\":[],\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"dfd8e42\"},{\"_id\":\"ade025c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3db3c29\"},{\"_id\":\"d136208\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_btn_typography_typography\":\"globals\\/typography?id=361df56\",\"mf_btn_bg_color_color\":\"globals\\/colors?id=5b35d73\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\",\"mf_btn_hover_color\":\"globals\\/colors?id=a606f90\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":false}]'),
(67, 656, 'metform_form__form_total_entries', '15'),
(68, 872, '_elementor_edit_mode', 'builder'),
(69, 872, '_elementor_template_type', 'container'),
(70, 872, '_elementor_version', '3.23.3'),
(71, 872, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(72, 872, '_elementor_data', '[{\"id\":\"2847c7b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c963e70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.com\\/wp-content\\/uploads\\/2023\\/11\\/brake_pad_with_grease.jpg\",\"id\":2673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"image_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"18938f8\"},{\"_id\":\"8f9b131\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a5d2ea6\"},{\"_id\":\"17fec47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"64bbeb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"aed038e\"},{\"_id\":\"e0ce8b8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ad6103c\"},{\"_id\":\"d129373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f60b60b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-4.svg\",\"id\":438},\"library\":\"svg\"},\"title\":\"J-1 Brakes - Brake Pads\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\"},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"Non Asbestos Organic, Non-abrasive Semi and Low Metallic plus several types of Ceramic materials with different additives and unique production processes are used in production range. All the above materials are environmentally friendly - with lowest brake dust levels to protect the environment and keep your rims free off unsightly brake dust. The friction class by LINK dynamic test for all formulations is from \\u201cF\\u201d to \\u201cH\\u201d. It guarantees drivers highest road safety with high resistance to FADE (brake power loss in extreme situation). The extensive range of options guarantees comfortable and effective brake operation for each different car and driving style and ensure safety on road and long life of brake rotor.<\\/p>\",\"show_button\":\"yes\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=a054e68\"},\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"ib_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link\":{\"url\":\"https:\\/\\/index.j1brakes.com\\/catalogue\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(74, 1033, '_elementor_edit_mode', 'builder'),
(75, 1033, '_elementor_template_type', 'wp-post'),
(76, 1033, '_elementor_version', '3.27.6'),
(77, 1033, '_wp_page_template', 'default'),
(78, 1033, '_elementor_data', '[{\"id\":\"70fd1c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"9c6457c\"},{\"_id\":\"2b0ab0e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4f586bf\"},{\"_id\":\"b2ca3fa\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap_tablet\":\"wrap\",\"overflow\":\"hidden\",\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile\":\"column\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"min_height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"6281835\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b5d8476\"},{\"_id\":\"fed983f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e0cc275\"},{\"_id\":\"945dc91\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"2b70747\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"[ld_archive_title]\",\"_id\":\"322f502\",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"item_color\":\"#FFFFFF\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1b868da\"},{\"_id\":\"402e56d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"36878cd\"},{\"_id\":\"d600ea2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_tag\":\"h1\",\"lqd_text_alignment\":\"left\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"f0594b7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Comprehensive range of friction products for vehicles across Japan, Europe and the Americas.\",\"_id\":\"322f502\",\"text_individual_styles\":\"yes\",\"item_color\":\"#F0EAEA\"}],\"lqd_text_tag\":\"p\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1b868da\"},{\"_id\":\"402e56d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"36878cd\"},{\"_id\":\"d600ea2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_alignment_tablet\":\"left\",\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"7ca8058\",\"elType\":\"widget\",\"settings\":{\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f743423\"},{\"_id\":\"8c814b8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fb135d0\"},{\"_id\":\"38b9ea9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"breadcrumb_separator\":\"\\/\",\"breadcrumb_typography_typography\":\"custom\",\"breadcrumb_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF1A\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"breadcrumb_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"breadcrumb_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"breadcrumb_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"breadcrumb_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"breadcrumb_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"breadcrumb_color\":\"#FFFFFF\",\"breadcrumb_link_color\":\"#B4B4B4\",\"breadcrumb_link_hover_color\":\"#FF4343\"},\"elements\":[],\"widgetType\":\"lqd-breadcrumb\"}],\"isInner\":true}],\"isInner\":false}]'),
(80, 1033, '_elementor_page_settings', 'a:9:{s:26:\"lqd_title_wrapper_bg_color\";s:29:\"var(--e-global-color-primary)\";s:26:\"lqd_title_wrapper_bg_image\";a:5:{s:3:\"url\";s:103:\"https://staging.liquid-themes.com/logistics-international/wp-content/uploads/2023/11/post-17@2x.jpg.jpg\";s:2:\"id\";i:1433;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:29:\"lqd_title_wrapper_bg_position\";s:12:\"center right\";s:27:\"lqd_title_wrapper_bg_repeat\";s:9:\"no-repeat\";s:25:\"lqd_title_wrapper_bg_size\";s:5:\"cover\";s:39:\"lqd_title_wrapper_bg_overlay_background\";s:5:\"color\";s:34:\"lqd_title_wrapper_bg_overlay_color\";s:53:\"linear-gradient(45deg, #FFFFFF 10%,#5C3A3B00 57.5%)\";s:31:\"lqd_title_wrapper_bg_background\";s:5:\"image\";s:22:\"lqd_sizeguide_btn_text\";s:10:\"Size Guide\";}'),
(81, 1107, '_wp_page_template', 'default'),
(82, 1107, '_elementor_edit_mode', 'builder'),
(83, 1107, '_elementor_template_type', 'wp-post'),
(84, 1107, '_elementor_version', '3.18.3'),
(85, 1107, '_elementor_page_settings', 'a:2:{s:13:\"header_sticky\";s:3:\"yes\";s:20:\"header_sticky_offset\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-1;s:5:\"sizes\";a:0:{}}}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(86, 1107, '_elementor_data', '[{\"id\":\"001515e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0a77b9d\"},{\"_id\":\"20bc205\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"85437d5\"},{\"_id\":\"40e0e1c\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_sticky_container_bg_background\":\"classic\",\"lqd_sticky_container_bg_color\":\"#FFFFFF\",\"lqd_sticky_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"flex_wrap_mobile\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e8f490\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8c77bf6\"},{\"_id\":\"d71a488\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4bd4a82\"},{\"_id\":\"a2ded87\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"15\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":15},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_flex_size_mobile\":\"grow\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"08f9886\",\"elType\":\"widget\",\"settings\":{\"modal_type\":\"fullscreen\",\"trigger_type\":\"grid\",\"trigger_text\":\"\",\"trigger_color\":\"var(--e-global-color-5b35d73)\",\"trigger_color_active\":\"#000000\",\"bars_shape_dimension\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"45\",\"height\":\"45\"},\"bars_shape_border_border\":\"solid\",\"bars_shape_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"bars_shape_border_color\":\"#00000033\",\"bars_shape_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"bars_shape_background_active_background\":\"color\",\"bars_shape_background_active_color\":\"#FFFFFF\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"66aabbb\"},{\"_id\":\"0ad80e8\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"057a82d\"},{\"_id\":\"77173cf\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"modal\":\"13\",\"trigger_color_hover\":\"#000000\",\"bars_shape_background_hover_background\":\"color\",\"bars_shape_background_hover_color\":\"#FFFFFF\",\"bars_shape_border_hover_border\":\"solid\",\"bars_shape_border_hover_color\":\"#FFFFFF\",\"modal_inner_background_background\":\"color\",\"modal_inner_background_color\":\"#FFFFFF\",\"modal_inner_background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"modal_inner_background_size\":\"initial\",\"modal_inner_background_bg_width\":{\"unit\":\"px\",\"size\":715,\"sizes\":[]},\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"trigger_background_active_color\":\"#FFFFFF\",\"bars_shape_border_active_border\":\"solid\",\"bars_shape_border_active_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"bars_shape_border_active_color\":\"#0000001C\",\"bars_shape_box_shadow_active_box_shadow_type\":\"yes\",\"bars_shape_box_shadow_active_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":35,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"modal_orientation_h_mobile_extra\":\"\",\"modal_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_orientation_v_mobile_extra\":\"\",\"modal_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_h_mobile_extra\":\"\",\"modal_close_btn_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_v_mobile_extra\":\"\",\"modal_close_btn_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_justify_content_mobile_extra\":\"\",\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_first_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_first_mobile_extra\":\"\",\"bars_width_second_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_second_mobile_extra\":\"\",\"bars_width_third_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_third_mobile_extra\":\"\",\"bars_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"bars_shape_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"lqd_sticky_trigger_color\":\"var(--e-global-color-47490ef)\",\"lqd_sticky_trigger_color_hover\":\"#FFFFFF\",\"lqd_sticky_bars_shape_border_border\":\"solid\",\"lqd_sticky_bars_shape_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_color\":\"#1B1B1B26\",\"lqd_sticky_bars_shape_background_hover_background\":\"color\",\"lqd_sticky_bars_shape_background_hover_color\":\"var(--e-global-color-47490ef)\",\"lqd_sticky_bars_shape_border_hover_border\":\"solid\",\"lqd_sticky_bars_shape_border_hover_color\":\"var(--e-global-color-47490ef)\",\"modal_close_btn_orientation_h\":\"start\",\"modal_close_btn_offset_x\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"dark_trigger_color\":\"#FFFFFF\",\"dark_bars_shape_border_border\":\"solid\",\"dark_bars_shape_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"dark_bars_shape_border_color\":\"#FFFFFF33\"},\"elements\":[],\"widgetType\":\"lqd-modal\"},{\"id\":\"624664a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4677b82\"},{\"_id\":\"bf49b89\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fa41980\"},{\"_id\":\"32c204e\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"flex_wrap_mobile\":\"nowrap\",\"_flex_size_mobile\":\"none\",\"flex_justify_content_mobile\":\"center\",\"_flex_size_tablet_extra\":\"grow\"},\"elements\":[{\"id\":\"02cc40d\",\"elType\":\"widget\",\"settings\":{\"html\":\" <\\/animate> <\\/path> <\\/animate> <\\/path> <\\/svg>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"15f4505\"},{\"_id\":\"f3cc5ae\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cd02185\"},{\"_id\":\"fb7b878\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_sticky_hide\":\"yes\",\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_dark_show\":\"yes\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"07deb4c\",\"elType\":\"widget\",\"settings\":{\"html\":\" <\\/animate> <\\/path> <\\/animate> <\\/path> <\\/svg>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"15f4505\"},{\"_id\":\"f3cc5ae\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cd02185\"},{\"_id\":\"fb7b878\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_dark_hide\":\"yes\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"0a9efc1\",\"elType\":\"widget\",\"settings\":{\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"cfa6d29\"},{\"_id\":\"fa43d14\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dcc1e3d\"},{\"_id\":\"187caa7\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"uselogo\":\"\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/09\\/logo-dark.svg\",\"id\":45,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"dark_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/09\\/logo.svg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"sticky_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"lqd_site_logo\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae35274\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8c77bf6\"},{\"_id\":\"d71a488\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4bd4a82\"},{\"_id\":\"a2ded87\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"37\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":37},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"30\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"6a7bc79\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"primary\",\"custom_menu\":[{\"label\":\"Home\",\"link\":{\"url\":\"#home\"},\"_id\":\"f81035b\"},{\"label\":\"About\",\"link\":{\"url\":\"#about\"},\"_id\":\"bd2f8c1\"},{\"label\":\"Services\",\"link\":{\"url\":\"#services\"},\"_id\":\"6dad7e5\"}],\"individual_item_styles\":[],\"trigger_text\":\"Menu\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"eb86627\"},{\"_id\":\"bd54cc7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"603fa66\"},{\"_id\":\"1f2bad8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"ul_top_gap\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"li_top_typography_typography\":\"globals\\/typography?id=d19fa00\",\"trigger_typography_typography\":\"globals\\/typography?id=8cbff5c\"},\"localscroll\":\"yes\",\"li_top_color\":\"#FFFFFF4F\",\"li_top_color_hover\":\"#FFFFFF\",\"li_top_color_active\":\"#FFFFFF\",\"lqd_sticky_li_top_color\":\"#00000059\",\"lqd_sticky_li_top_color_hover\":\"#000000\",\"lqd_sticky_li_top_color_active\":\"#000000\",\"items_orientation_tablet\":\"column\",\"items_h_align_tablet\":\"center\",\"mobile_dropdown\":\"yes\",\"mobile_dropdown_breakpoint_tablet\":\"1024px\",\"ul_top_gap_tablet_extra\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ul_top_gap_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"mobile_dropdown_width_tablet_tablet\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"mobile_dropdown_width_tablet_mobile\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"mobile_dropdown_paddingtablet_extra_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"mobile_dropdown_colortablet_extra\":\"var(--e-global-color-6ad72d6)\",\"trigger_text_placement\":\"start\",\"trigger_color\":\"var(--e-global-color-d5f65f9)\",\"bars_width_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_flex_order_tablet\":\"end\",\"ul_top_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"mobile_dropdown_colortablet_extra_hover\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_colortablet_extra_active\":\"var(--e-global-color-155d4ae)\",\"li_top_color_tablet\":\"#FFFFFF7F\",\"ul_top_background_background\":\"color\",\"ul_top_background_color_tablet\":\"var(--e-global-color-084d856)\",\"ul_top_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"li_top_color_hover_tablet\":\"var(--e-global-color-155d4ae)\",\"li_top_color_active_tablet\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_orientation_h_tablet\":\"end\",\"mobile_dropdown_offset_x_end_tablet_mobile\":{\"unit\":\"px\",\"size\":-5,\"sizes\":[]},\"localscroll_offset\":{\"unit\":\"px\",\"size\":77,\"sizes\":[]},\"ul_top_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_sticky_li_top_color_tablet\":\"var(--e-global-color-6ad72d6)\",\"lqd_sticky_li_top_color_hover_tablet\":\"var(--e-global-color-155d4ae)\",\"lqd_sticky_li_top_color_active_tablet\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_offset_y_tablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_color\":\"var(--e-global-color-5b35d73)\",\"items_h_align_mobile\":\"center\",\"mobile_dropdown_offset_x_tablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_tablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_tablet_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-menu\"},{\"id\":\"5611a97\",\"elType\":\"widget\",\"settings\":{\"modal_type\":\"fullscreen\",\"modal\":\"13\",\"trigger_type\":\"none\",\"trigger_text\":\"Track Shipment\",\"trigger_hover_effect\":\"scale-up\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e4c84a0\"},{\"_id\":\"0012129\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0defe7d\"},{\"_id\":\"d84091a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"trigger_typography_typography\":\"globals\\/typography?id=8cbff5c\"},\"modal_inner_background_background\":\"color\",\"modal_inner_background_color\":\"#FFFFFF\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"trigger_color\":\"var(--e-global-color-43b07a5)\",\"trigger_background_background\":\"color\",\"trigger_background_color\":\"var(--e-global-color-dafbdf1)\",\"trigger_border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"trigger_background_hover_background\":\"color\",\"trigger_background_hover_color\":\"var(--e-global-color-47490ef)\",\"trigger_color_active\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_active_background\":\"color\",\"trigger_background_active_color\":\"var(--e-global-color-47490ef)\",\"bars_shape_background_active_background\":\"color\",\"bars_shape_background_active_color\":\"var(--e-global-color-47490ef)\",\"bars_shape_border_radius_active\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hide_mobile\":\"hidden-mobile\",\"dark_modal_inner_background_background\":\"color\",\"dark_modal_inner_background_color\":\"var(--e-global-color-654afd6)\",\"trigger_color_hover\":\"var(--e-global-color-d5f65f9)\"},\"elements\":[],\"widgetType\":\"lqd-modal\"},{\"id\":\"2f3dfd3\",\"elType\":\"widget\",\"settings\":{\"text\":\"scroll to top\",\"lqd_adaptive_color\":\"yes\",\"link_color\":\"var(--e-global-color-5b35d73)\",\"dark_link_color\":\"var(--e-global-color-3774f73)\",\"_position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_offset_y_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de07ec3\"},{\"_id\":\"7307299\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ccd892c\"},{\"_id\":\"dc2382c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"link_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"lqd-scroll-progress\"}],\"isInner\":true},{\"id\":\"53c2694\",\"elType\":\"widget\",\"settings\":{\"modal_type\":\"box\",\"modal\":\"11\",\"trigger_type\":\"icon\",\"trigger_text\":\"\",\"trigger_color\":\"#FFFFFF\",\"trigger_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"bars_shape_dimension\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"57\",\"height\":\"57\"},\"bars_shape_background_background\":\"color\",\"bars_shape_background_color\":\"var(--e-global-color-5b35d73)\",\"bars_shape_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"34931d4\"},{\"_id\":\"dadb4b9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e253301\"},{\"_id\":\"25c6543\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"modal_orientation_h\":\"end\",\"modal_offset_x_end\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"modal_inner_background_background\":\"color\",\"modal_inner_background_color\":\"#FFFFFF\",\"modal_inner_dimensions\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_mobile_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_close_btn_offset_x_end\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"modal_inner_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"45\",\"bottom\":\"30\",\"left\":\"45\",\"isLinked\":false},\"modal_inner_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"modal_inner_box_shadow_box_shadow_type\":\"yes\",\"modal_inner_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":65,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"modal_inner_width\":{\"unit\":\"px\",\"size\":575,\"sizes\":[]},\"modal_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"modal_inner_width_mobile\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"modal_inner_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"modal_orientation_h_mobile_extra\":\"\",\"modal_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_orientation_v_mobile_extra\":\"\",\"modal_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_h_mobile_extra\":\"\",\"modal_close_btn_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_v_mobile_extra\":\"\",\"modal_close_btn_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_justify_content_mobile_extra\":\"\",\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_first_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_first_mobile_extra\":\"\",\"bars_width_second_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_second_mobile_extra\":\"\",\"bars_width_third_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_third_mobile_extra\":\"\",\"bars_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"bars_shape_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/phone.svg\",\"id\":848},\"library\":\"svg\"},\"trigger_hover_effect\":\"scale-up\",\"bars_shape_background_hover_background\":\"color\",\"bars_shape_background_hover_color\":\"var(--e-global-color-primary)\"},\"elements\":[],\"widgetType\":\"lqd-modal\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(88, 1107, '_wp_old_slug', 'header-inner'),
(89, 1107, '_wp_old_slug', 'header-inner-basic'),
(90, 1175, '_wp_page_template', 'default'),
(91, 1175, '_elementor_edit_mode', 'builder'),
(92, 1175, '_elementor_template_type', 'wp-post'),
(93, 1175, '_elementor_version', '3.18.2'),
(94, 1175, '_elementor_page_settings', 'a:7:{s:20:\"portfolio_attributes\";s:22:\"Client | Liquid Themes\";s:36:\"lqd_page_title_wrapper_bg_background\";s:5:\"image\";s:31:\"lqd_page_title_wrapper_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:34:\"lqd_page_title_wrapper_bg_position\";s:13:\"center center\";s:36:\"lqd_page_title_wrapper_bg_attachment\";s:5:\"fixed\";s:32:\"lqd_page_title_wrapper_bg_repeat\";s:9:\"no-repeat\";s:30:\"lqd_page_title_wrapper_bg_size\";s:5:\"cover\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(95, 1175, '_elementor_data', '[{\"id\":\"8eb5239\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"140\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"44203d0\"},{\"_id\":\"0fb6a2b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"36ccd2f\"},{\"_id\":\"8c6b516\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"grid_columns_grid_tablet\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"grid_gaps\":{\"column\":\"30\",\"row\":\"55\",\"isLinked\":false,\"unit\":\"px\"}},\"elements\":[{\"id\":\"1175a1a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"608381f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d49adb7\"},{\"_id\":\"675d47e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1ae6515\"},{\"_id\":\"1cb0e0c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F7F8FA\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"5fef9a5\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get a Free Quote\",\"_id\":\"ff7284f\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h5\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_weight\":\"700\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"69224e4\"},{\"_id\":\"248b296\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a96cfa\"},{\"_id\":\"9ed33e4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9746b95\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Date:\",\"title_tag\":\"h5\",\"subtitle\":\"Sep 2021\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"985ef0a\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Client:\",\"title_tag\":\"h5\",\"subtitle\":\"Apple Inc.\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"1e624c2\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Location:\",\"title_tag\":\"h5\",\"subtitle\":\"London, UK\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"0429e50\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Task:\",\"title_tag\":\"h5\",\"subtitle\":\"Data Analysis\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"781740c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#F7F8FA\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"20\",\"bottom\":\"35\",\"left\":\"20\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d49adb7\"},{\"_id\":\"675d47e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1ae6515\"},{\"_id\":\"1cb0e0c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"87d5bdf\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get a Free Quote\",\"_id\":\"ff7284f\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h5\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_weight\":\"700\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"69224e4\"},{\"_id\":\"248b296\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a96cfa\"},{\"_id\":\"9ed33e4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"5a794b4\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1267***1702647135433\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6bd7540\"},{\"_id\":\"21b2e8c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"aadb57a\"},{\"_id\":\"d8f7f2a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":true},{\"id\":\"1e04818\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#70707026\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6e242bc\"},{\"_id\":\"315473b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"5e439a0\"},{\"_id\":\"749a123\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"ad3915d\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":\"akar-icons ai-phone\",\"library\":\"akar-icons\"},\"title\":\"Toll Free Call Center:\",\"title_tag\":\"h4\",\"subtitle\":\"+48 4348 80 32\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"f031299\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"icon_inline\":\"yes\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"icon\"],\"separate_content_placement\":\"start\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"55\",\"height\":\"55\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[{\"_id\":\"20b8679\",\"background\":\"color\",\"color\":\"var(--e-global-color-d5f65f9)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"icon_border_radius\":{\"unit\":\"em\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"icon_border_radius_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_background_hover_liquid_background_items\":[{\"_id\":\"7e9b113\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"title_color\":\"#0A0A0A\",\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"48e8307\"},{\"_id\":\"d70b8cd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"63036df\"},{\"_id\":\"45100fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"\"},\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_effect_hover\":\"scale-up\",\"icon_color_hover\":\"var(--e-global-color-d5f65f9)\",\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"icon_color\":\"var(--e-global-color-primary)\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e7e339\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":70},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38acf7d\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Data Analysis\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"c324f50\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Take advantage of the experiential-learning opportunities built into many programs. You can work in\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"labs on and off campus or even spend semesters overseas. One Construction employs over 3 000\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"employees, the majority of whom are based on project sites.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"27ed41b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"We embrace holistic development and support for employees with the aim of being a first-choice\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"employer within our sectors. Through a unique combination of engineering, construction and design\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"disciplines and expertise.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"0f6775d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8ee88d7\"},{\"_id\":\"cb006a9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"55ffdc2\"},{\"_id\":\"86ace83\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"8638895\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"flex_justify_content_tablet\":\"space-between\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#EBEBEB\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"ad52324\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Plan Benefits\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"b9c1692\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Through a unique combination of engineering,\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"construction and design disciplines and expertise,\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"Concor delivers world class infrastructure solutions.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d008863\",\"text\":\"We embrace holistic development and support for employees.\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"280a81e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"button_expand\":\"yes\",\"justify_btn_content\":\"center\",\"color_normal\":\"var(--e-global-color-d5f65f9)\",\"background_normal_liquid_background_items\":[{\"_id\":\"3557b65\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"border_radius_normal\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_hover_liquid_background_items\":[{\"_id\":\"dc82928\",\"background\":\"color\",\"color\":\"var(--e-global-color-47490ef)\"}],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"32bfc9d\"},{\"_id\":\"7deb9d7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1d1a1aa\"},{\"_id\":\"54ec966\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"align_mobile_extra\":\"\",\"local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_expand_mobile_extra\":\"\",\"justify_btn_content_mobile_extra\":\"\",\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"color_hover\":\"var(--e-global-color-d5f65f9)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"f2e4ffc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EBEBEB\",\"flex_justify_content\":\"center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"8c839ea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b78c57d\"},{\"text\":\"Immediate settlement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"23830fa\"},{\"text\":\"Zero broker commission\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"68315a5\"},{\"text\":\"Guaranteed by the services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"242498d\"},{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ab1361c\"},{\"text\":\"Infrastructure solutions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1416173\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ff9fa0\"},{\"_id\":\"b5d63be\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b38d489\"},{\"_id\":\"a0da9b4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align_mobile_extra\":\"\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4908046\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Questions? You\\u2019re covered.\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d112ea2\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Guaranteed by the trusted aviation services\",\"content\":\"We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"06952c9\"},{\"title\":\"Professional end to end encryption for companies\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"2bee43d\"},{\"title\":\"Zero broker commission for data research and analysis\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"af5f361\"}],\"title_tag\":\"h5\",\"enable_trigger_icon\":\"\",\"item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"trigger_typography_typography\":\"custom\",\"trigger_padding\":{\"unit\":\"em\",\"top\":\"1.1\",\"right\":\"1.5\",\"bottom\":\"1.1\",\"left\":\"1.5\",\"isLinked\":false},\"trigger_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"trigger_border_color\":\"#E8792F4C\",\"trigger_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"trigger_color_hover\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_hover_background\":\"color\",\"trigger_background_hover_color\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_active_background\":\"color\",\"trigger_background_active_color\":\"var(--e-global-color-primary)\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_color\":\"#5F6973\",\"content_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"117e394\"},{\"_id\":\"aec0c81\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4b5bb1e\"},{\"_id\":\"8e0f48d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_color\":\"var(--e-global-color-fb85fbd)\",\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_mobile_extra\":\"\",\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_hover_mobile_extra\":\"\",\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_active_mobile_extra\":\"\",\"item_background_active_color_mobile_extra\":\"\",\"item_background_active_position_mobile_extra\":\"\",\"item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_repeat_mobile_extra\":\"\",\"item_background_active_size_mobile_extra\":\"\",\"item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_color_mobile_extra\":\"\",\"trigger_background_color_mobile_extra\":\"\",\"trigger_background_position_mobile_extra\":\"\",\"trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_mobile_extra\":\"\",\"trigger_background_size_mobile_extra\":\"\",\"trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_hover_mobile_extra\":\"\",\"trigger_background_hover_color_mobile_extra\":\"\",\"trigger_background_hover_position_mobile_extra\":\"\",\"trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_mobile_extra\":\"\",\"trigger_background_hover_size_mobile_extra\":\"\",\"trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_border\":\"solid\",\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_color\":\"var(--e-global-color-fb85fbd)\",\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_active_mobile_extra\":\"\",\"trigger_background_active_color_mobile_extra\":\"\",\"trigger_background_active_position_mobile_extra\":\"\",\"trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_mobile_extra\":\"\",\"trigger_background_active_size_mobile_extra\":\"\",\"trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_border\":\"solid\",\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_color\":\"var(--e-global-color-fae38d5)\",\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"trigger_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_mobile_extra\":\"\",\"trigger_icon_background_color_mobile_extra\":\"\",\"trigger_icon_background_position_mobile_extra\":\"\",\"trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_repeat_mobile_extra\":\"\",\"trigger_icon_background_size_mobile_extra\":\"\",\"trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_hover_mobile_extra\":\"\",\"trigger_icon_background_hover_color_mobile_extra\":\"\",\"trigger_icon_background_hover_position_mobile_extra\":\"\",\"trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"trigger_icon_background_hover_size_mobile_extra\":\"\",\"trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_active_mobile_extra\":\"\",\"trigger_icon_background_active_color_mobile_extra\":\"\",\"trigger_icon_background_active_position_mobile_extra\":\"\",\"trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_repeat_mobile_extra\":\"\",\"trigger_icon_background_active_size_mobile_extra\":\"\",\"trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_color_mobile_extra\":\"\",\"content_background_color_mobile_extra\":\"\",\"content_background_position_mobile_extra\":\"\",\"content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_repeat_mobile_extra\":\"\",\"content_background_size_mobile_extra\":\"\",\"content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_mobile_extra\":\"\",\"lqd_sticky_item_background_color_mobile_extra\":\"\",\"lqd_sticky_item_background_position_mobile_extra\":\"\",\"lqd_sticky_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_size_mobile_extra\":\"\",\"lqd_sticky_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_hover_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_active_mobile_extra\":\"\",\"lqd_sticky_item_background_active_color_mobile_extra\":\"\",\"lqd_sticky_item_background_active_position_mobile_extra\":\"\",\"lqd_sticky_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_active_size_mobile_extra\":\"\",\"lqd_sticky_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_color_mobile_extra\":\"\",\"lqd_sticky_content_background_color_mobile_extra\":\"\",\"lqd_sticky_content_background_position_mobile_extra\":\"\",\"lqd_sticky_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_background_size_mobile_extra\":\"\",\"lqd_sticky_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_color_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_hover_mobile_extra\":\"\",\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_active_mobile_extra\":\"\",\"dark_item_background_active_color_mobile_extra\":\"\",\"dark_item_background_active_position_mobile_extra\":\"\",\"dark_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_repeat_mobile_extra\":\"\",\"dark_item_background_active_size_mobile_extra\":\"\",\"dark_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_mobile_extra\":\"\",\"dark_trigger_background_color_mobile_extra\":\"\",\"dark_trigger_background_position_mobile_extra\":\"\",\"dark_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_mobile_extra\":\"\",\"dark_trigger_background_size_mobile_extra\":\"\",\"dark_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_hover_mobile_extra\":\"\",\"dark_trigger_background_hover_color_mobile_extra\":\"\",\"dark_trigger_background_hover_position_mobile_extra\":\"\",\"dark_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_background_hover_size_mobile_extra\":\"\",\"dark_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_active_mobile_extra\":\"\",\"dark_trigger_background_active_color_mobile_extra\":\"\",\"dark_trigger_background_active_position_mobile_extra\":\"\",\"dark_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_background_active_size_mobile_extra\":\"\",\"dark_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_mobile_extra\":\"\",\"dark_trigger_icon_background_color_mobile_extra\":\"\",\"dark_trigger_icon_background_position_mobile_extra\":\"\",\"dark_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_size_mobile_extra\":\"\",\"dark_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_hover_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_color_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_position_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_size_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_active_mobile_extra\":\"\",\"dark_trigger_icon_background_active_color_mobile_extra\":\"\",\"dark_trigger_icon_background_active_position_mobile_extra\":\"\",\"dark_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_active_size_mobile_extra\":\"\",\"dark_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_color_mobile_extra\":\"\",\"dark_content_background_color_mobile_extra\":\"\",\"dark_content_background_position_mobile_extra\":\"\",\"dark_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_repeat_mobile_extra\":\"\",\"dark_content_background_size_mobile_extra\":\"\",\"dark_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(97, 1175, '_thumbnail_id', '1240'),
(98, 1195, '_wp_page_template', 'default'),
(99, 1195, '_elementor_edit_mode', 'builder'),
(100, 1195, '_elementor_template_type', 'wp-post'),
(101, 1195, '_elementor_version', '3.18.2'),
(102, 1195, '_elementor_page_settings', 'a:7:{s:20:\"portfolio_attributes\";s:22:\"Client | Liquid Themes\";s:36:\"lqd_page_title_wrapper_bg_background\";s:5:\"image\";s:31:\"lqd_page_title_wrapper_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:34:\"lqd_page_title_wrapper_bg_position\";s:13:\"center center\";s:36:\"lqd_page_title_wrapper_bg_attachment\";s:5:\"fixed\";s:32:\"lqd_page_title_wrapper_bg_repeat\";s:9:\"no-repeat\";s:30:\"lqd_page_title_wrapper_bg_size\";s:5:\"cover\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(103, 1195, '_elementor_data', '[{\"id\":\"bf4698b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce6b579\"},{\"_id\":\"d5a3991\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2ec3ce6\"},{\"_id\":\"2ebd75a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"bdfdd8d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"1153782\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"9029e6b\"},{\"_id\":\"9f7140c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"44befc9\"},{\"_id\":\"812288b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"474c0bd\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"portfolio\",\"custom_menu\":[{\"label\":\"Home\",\"link\":{\"url\":\"#home\"},\"_id\":\"38d3a3e\"},{\"label\":\"About\",\"link\":{\"url\":\"#about\"},\"_id\":\"fa1a31a\"},{\"label\":\"Services\",\"link\":{\"url\":\"#services\"},\"_id\":\"85230c8\"}],\"individual_item_styles\":[],\"trigger_text\":\"\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64806\"},{\"_id\":\"6a49b34\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"66d0a48\"},{\"_id\":\"0ee03e0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"items_orientation\":\"column\",\"localscroll\":\"yes\",\"mobile_dropdown\":\"yes\",\"ul_top_gap\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"li_top_typography_typography\":\"custom\",\"li_top_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"li_top_typography_font_weight\":\"700\",\"li_top_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.6\",\"bottom\":\"1\",\"left\":\"1.6\",\"isLinked\":false},\"li_top_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_background_background\":\"color\",\"li_top_background_color\":\"#F7F8FA\",\"trigger_type\":\"none\",\"__globals__\":{\"li_top_typography_typography\":\"\"},\"li_top_color_hover\":\"var(--e-global-color-d5f65f9)\",\"li_top_background_hover_background\":\"color\",\"li_top_background_hover_color\":\"var(--e-global-color-primary)\",\"li_top_color_active\":\"var(--e-global-color-d5f65f9)\",\"li_top_background_active_background\":\"color\",\"li_top_background_active_color\":\"var(--e-global-color-primary)\",\"items_orientation_mobile_extra\":\"\",\"items_orientation_li_width_mobile_extra\":\"\",\"items_align_mobile_extra\":\"\",\"items_h_align_mobile_extra\":\"\",\"items_wrap_mobile_extra\":\"\",\"localscroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_breakpoint_mobile_extra\":\"\",\"mobile_dropdown_breakpoint_mobile_extra_position\":\"yes\",\"submenu_items_orientation_mobile_extra\":\"\",\"submenu_dropdown_pos_mobile_extra\":\"\",\"submenu_items_align_mobile_extra\":\"\",\"submenu_items_wrap_mobile_extra\":\"\",\"submenu_items_h_align_mobile_extra\":\"\",\"decorators_top_active_orientation_h_mobile_extra\":\"\",\"decorators_top_active_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_orientation_v_mobile_extra\":\"\",\"decorators_top_active_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_position_h_mobile_extra\":\"\",\"ul_top_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_position_v_mobile_extra\":\"\",\"ul_top_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_background_color_mobile_extra\":\"\",\"ul_top_background_position_mobile_extra\":\"\",\"ul_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_repeat_mobile_extra\":\"\",\"ul_top_background_size_mobile_extra\":\"\",\"ul_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_background_hover_color_mobile_extra\":\"\",\"ul_top_background_hover_position_mobile_extra\":\"\",\"ul_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_hover_repeat_mobile_extra\":\"\",\"ul_top_background_hover_size_mobile_extra\":\"\",\"ul_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_color\":\"var(--e-global-color-5b35d73)\",\"li_top_color_mobile_extra\":\"\",\"li_top_background_color_mobile_extra\":\"\",\"li_top_background_position_mobile_extra\":\"\",\"li_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_repeat_mobile_extra\":\"\",\"li_top_background_size_mobile_extra\":\"\",\"li_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_color_hover_mobile_extra\":\"\",\"li_top_background_hover_color_mobile_extra\":\"\",\"li_top_background_hover_position_mobile_extra\":\"\",\"li_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_hover_repeat_mobile_extra\":\"\",\"li_top_background_hover_size_mobile_extra\":\"\",\"li_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_color_active_mobile_extra\":\"\",\"li_top_background_active_color_mobile_extra\":\"\",\"li_top_background_active_position_mobile_extra\":\"\",\"li_top_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_active_repeat_mobile_extra\":\"\",\"li_top_background_active_size_mobile_extra\":\"\",\"li_top_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_opacity_active_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_position_h_mobile_extra\":\"\",\"dropdown_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_position_v_mobile_extra\":\"\",\"dropdown_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_background_color_mobile_extra\":\"\",\"dropdown_background_position_mobile_extra\":\"\",\"dropdown_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_background_repeat_mobile_extra\":\"\",\"dropdown_background_size_mobile_extra\":\"\",\"dropdown_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_color_mobile_extra\":\"\",\"dropdown_link_background_color_mobile_extra\":\"\",\"dropdown_link_background_position_mobile_extra\":\"\",\"dropdown_link_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_repeat_mobile_extra\":\"\",\"dropdown_link_background_size_mobile_extra\":\"\",\"dropdown_link_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_color_hover_mobile_extra\":\"\",\"dropdown_link_background_hover_color_mobile_extra\":\"\",\"dropdown_link_background_hover_position_mobile_extra\":\"\",\"dropdown_link_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_hover_repeat_mobile_extra\":\"\",\"dropdown_link_background_hover_size_mobile_extra\":\"\",\"dropdown_link_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_background_color_mobile_extra\":\"\",\"icon_background_position_mobile_extra\":\"\",\"icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_repeat_mobile_extra\":\"\",\"icon_background_size_mobile_extra\":\"\",\"icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_background_hover_color_mobile_extra\":\"\",\"icon_background_hover_position_mobile_extra\":\"\",\"icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_hover_repeat_mobile_extra\":\"\",\"icon_background_hover_size_mobile_extra\":\"\",\"icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_active_mobile_extra\":\"\",\"icon_background_active_color_mobile_extra\":\"\",\"icon_background_active_position_mobile_extra\":\"\",\"icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_active_repeat_mobile_extra\":\"\",\"icon_background_active_size_mobile_extra\":\"\",\"icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_color_mobile_extra\":\"\",\"badge_background_color_mobile_extra\":\"\",\"badge_background_position_mobile_extra\":\"\",\"badge_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_repeat_mobile_extra\":\"\",\"badge_background_size_mobile_extra\":\"\",\"badge_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_color_hover_mobile_extra\":\"\",\"badge_background_hover_color_mobile_extra\":\"\",\"badge_background_hover_position_mobile_extra\":\"\",\"badge_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_hover_repeat_mobile_extra\":\"\",\"badge_background_hover_size_mobile_extra\":\"\",\"badge_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_color_active_mobile_extra\":\"\",\"badge_background_active_color_mobile_extra\":\"\",\"badge_background_active_position_mobile_extra\":\"\",\"badge_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_active_repeat_mobile_extra\":\"\",\"badge_background_active_size_mobile_extra\":\"\",\"badge_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"decorators_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_background_color_mobile_extra\":\"\",\"decorators_background_position_mobile_extra\":\"\",\"decorators_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_background_repeat_mobile_extra\":\"\",\"decorators_background_size_mobile_extra\":\"\",\"decorators_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"decorators_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ul_top_background_color_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_position_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_repeat_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_size_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ul_top_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_li_top_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_position_mobile_extra\":\"\",\"lqd_sticky_li_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_repeat_mobile_extra\":\"\",\"lqd_sticky_li_top_background_size_mobile_extra\":\"\",\"lqd_sticky_li_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_li_top_color_hover_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_li_top_color_active_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_position_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_size_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_dropdown_background_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_position_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_background_repeat_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_size_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_dropdown_link_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_position_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_repeat_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_size_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_dropdown_link_color_hover_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_position_mobile_extra\":\"\",\"lqd_sticky_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_repeat_mobile_extra\":\"\",\"lqd_sticky_icon_background_size_mobile_extra\":\"\",\"lqd_sticky_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_active_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_position_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_size_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_badge_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_position_mobile_extra\":\"\",\"lqd_sticky_badge_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_repeat_mobile_extra\":\"\",\"lqd_sticky_badge_background_size_mobile_extra\":\"\",\"lqd_sticky_badge_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_badge_color_hover_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_badge_color_active_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_position_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_size_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_decorators_background_color_mobile_extra\":\"\",\"lqd_sticky_decorators_background_position_mobile_extra\":\"\",\"lqd_sticky_decorators_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_decorators_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_decorators_background_repeat_mobile_extra\":\"\",\"lqd_sticky_decorators_background_size_mobile_extra\":\"\",\"lqd_sticky_decorators_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_decorators_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ul_top_background_color_mobile_extra\":\"\",\"dark_ul_top_background_position_mobile_extra\":\"\",\"dark_ul_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_repeat_mobile_extra\":\"\",\"dark_ul_top_background_size_mobile_extra\":\"\",\"dark_ul_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ul_top_background_hover_color_mobile_extra\":\"\",\"dark_ul_top_background_hover_position_mobile_extra\":\"\",\"dark_ul_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_hover_repeat_mobile_extra\":\"\",\"dark_ul_top_background_hover_size_mobile_extra\":\"\",\"dark_ul_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_li_top_color_mobile_extra\":\"\",\"dark_li_top_background_color_mobile_extra\":\"\",\"dark_li_top_background_position_mobile_extra\":\"\",\"dark_li_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_repeat_mobile_extra\":\"\",\"dark_li_top_background_size_mobile_extra\":\"\",\"dark_li_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_li_top_color_hover_mobile_extra\":\"\",\"dark_li_top_background_hover_color_mobile_extra\":\"\",\"dark_li_top_background_hover_position_mobile_extra\":\"\",\"dark_li_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_hover_repeat_mobile_extra\":\"\",\"dark_li_top_background_hover_size_mobile_extra\":\"\",\"dark_li_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_li_top_color_active_mobile_extra\":\"\",\"dark_li_top_background_active_color_mobile_extra\":\"\",\"dark_li_top_background_active_position_mobile_extra\":\"\",\"dark_li_top_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_active_repeat_mobile_extra\":\"\",\"dark_li_top_background_active_size_mobile_extra\":\"\",\"dark_li_top_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_dropdown_background_color_mobile_extra\":\"\",\"dark_dropdown_background_position_mobile_extra\":\"\",\"dark_dropdown_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_background_repeat_mobile_extra\":\"\",\"dark_dropdown_background_size_mobile_extra\":\"\",\"dark_dropdown_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_dropdown_link_color_mobile_extra\":\"\",\"dark_dropdown_link_background_color_mobile_extra\":\"\",\"dark_dropdown_link_background_position_mobile_extra\":\"\",\"dark_dropdown_link_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_repeat_mobile_extra\":\"\",\"dark_dropdown_link_background_size_mobile_extra\":\"\",\"dark_dropdown_link_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_dropdown_link_color_hover_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_color_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_position_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_hover_repeat_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_size_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_background_color_mobile_extra\":\"\",\"dark_icon_background_position_mobile_extra\":\"\",\"dark_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_repeat_mobile_extra\":\"\",\"dark_icon_background_size_mobile_extra\":\"\",\"dark_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_background_hover_color_mobile_extra\":\"\",\"dark_icon_background_hover_position_mobile_extra\":\"\",\"dark_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_hover_repeat_mobile_extra\":\"\",\"dark_icon_background_hover_size_mobile_extra\":\"\",\"dark_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_active_mobile_extra\":\"\",\"dark_icon_background_active_color_mobile_extra\":\"\",\"dark_icon_background_active_position_mobile_extra\":\"\",\"dark_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_active_repeat_mobile_extra\":\"\",\"dark_icon_background_active_size_mobile_extra\":\"\",\"dark_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_badge_color_mobile_extra\":\"\",\"dark_badge_background_color_mobile_extra\":\"\",\"dark_badge_background_position_mobile_extra\":\"\",\"dark_badge_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_repeat_mobile_extra\":\"\",\"dark_badge_background_size_mobile_extra\":\"\",\"dark_badge_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_badge_color_hover_mobile_extra\":\"\",\"dark_badge_background_hover_color_mobile_extra\":\"\",\"dark_badge_background_hover_position_mobile_extra\":\"\",\"dark_badge_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_hover_repeat_mobile_extra\":\"\",\"dark_badge_background_hover_size_mobile_extra\":\"\",\"dark_badge_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_badge_color_active_mobile_extra\":\"\",\"dark_badge_background_active_color_mobile_extra\":\"\",\"dark_badge_background_active_position_mobile_extra\":\"\",\"dark_badge_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_active_repeat_mobile_extra\":\"\",\"dark_badge_background_active_size_mobile_extra\":\"\",\"dark_badge_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_decorators_background_color_mobile_extra\":\"\",\"dark_decorators_background_position_mobile_extra\":\"\",\"dark_decorators_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_decorators_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_decorators_background_repeat_mobile_extra\":\"\",\"dark_decorators_background_size_mobile_extra\":\"\",\"dark_decorators_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_decorators_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mobile_dropdown_width_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_orientation_h_mobile_extra\":\"start\",\"mobile_dropdown_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_orientation_v_mobile_extra\":\"top\",\"mobile_dropdown_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_justify_content_mobile_extra\":\"\",\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_color_mobile_extra\":\"\",\"trigger_background_position_mobile_extra\":\"\",\"trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_mobile_extra\":\"\",\"trigger_background_size_mobile_extra\":\"\",\"trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_hover_color_mobile_extra\":\"\",\"trigger_background_hover_position_mobile_extra\":\"\",\"trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_mobile_extra\":\"\",\"trigger_background_hover_size_mobile_extra\":\"\",\"trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_active_color_mobile_extra\":\"\",\"trigger_background_active_position_mobile_extra\":\"\",\"trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_mobile_extra\":\"\",\"trigger_background_active_size_mobile_extra\":\"\",\"trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_first_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_first_mobile_extra\":\"\",\"bars_width_second_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_second_mobile_extra\":\"\",\"bars_width_third_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_third_mobile_extra\":\"\",\"bars_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_color_mobile_extra\":\"\",\"bars_background_position_mobile_extra\":\"\",\"bars_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_repeat_mobile_extra\":\"\",\"bars_background_size_mobile_extra\":\"\",\"bars_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_color_mobile_extra\":\"\",\"bars_background_hover_position_mobile_extra\":\"\",\"bars_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_repeat_mobile_extra\":\"\",\"bars_background_hover_size_mobile_extra\":\"\",\"bars_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_color_mobile_extra\":\"\",\"bars_background_active_position_mobile_extra\":\"\",\"bars_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_repeat_mobile_extra\":\"\",\"bars_background_active_size_mobile_extra\":\"\",\"bars_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"bars_shape_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_color_mobile_extra\":\"\",\"bars_shape_background_position_mobile_extra\":\"\",\"bars_shape_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_repeat_mobile_extra\":\"\",\"bars_shape_background_size_mobile_extra\":\"\",\"bars_shape_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_hover_color_mobile_extra\":\"\",\"bars_shape_background_hover_position_mobile_extra\":\"\",\"bars_shape_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_hover_repeat_mobile_extra\":\"\",\"bars_shape_background_hover_size_mobile_extra\":\"\",\"bars_shape_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_active_color_mobile_extra\":\"\",\"bars_shape_background_active_position_mobile_extra\":\"\",\"bars_shape_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_active_repeat_mobile_extra\":\"\",\"bars_shape_background_active_size_mobile_extra\":\"\",\"bars_shape_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_background_color_mobile_extra\":\"\",\"lqd_sticky_bars_background_position_mobile_extra\":\"\",\"lqd_sticky_bars_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_background_size_mobile_extra\":\"\",\"lqd_sticky_bars_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_color_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_position_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_size_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_color_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_position_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_size_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_background_active_color_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_position_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_size_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_color_mobile_extra\":\"\",\"dark_trigger_background_position_mobile_extra\":\"\",\"dark_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_mobile_extra\":\"\",\"dark_trigger_background_size_mobile_extra\":\"\",\"dark_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_hover_color_mobile_extra\":\"\",\"dark_trigger_background_hover_position_mobile_extra\":\"\",\"dark_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_background_hover_size_mobile_extra\":\"\",\"dark_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_active_color_mobile_extra\":\"\",\"dark_trigger_background_active_position_mobile_extra\":\"\",\"dark_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_background_active_size_mobile_extra\":\"\",\"dark_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_background_color_mobile_extra\":\"\",\"dark_bars_background_position_mobile_extra\":\"\",\"dark_bars_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_repeat_mobile_extra\":\"\",\"dark_bars_background_size_mobile_extra\":\"\",\"dark_bars_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_color_mobile_extra\":\"\",\"dark_bars_background_hover_position_mobile_extra\":\"\",\"dark_bars_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_repeat_mobile_extra\":\"\",\"dark_bars_background_hover_size_mobile_extra\":\"\",\"dark_bars_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_color_mobile_extra\":\"\",\"dark_bars_background_active_position_mobile_extra\":\"\",\"dark_bars_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_repeat_mobile_extra\":\"\",\"dark_bars_background_active_size_mobile_extra\":\"\",\"dark_bars_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_color_mobile_extra\":\"\",\"dark_bars_shape_background_position_mobile_extra\":\"\",\"dark_bars_shape_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_repeat_mobile_extra\":\"\",\"dark_bars_shape_background_size_mobile_extra\":\"\",\"dark_bars_shape_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_background_hover_color_mobile_extra\":\"\",\"dark_bars_shape_background_hover_position_mobile_extra\":\"\",\"dark_bars_shape_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_hover_repeat_mobile_extra\":\"\",\"dark_bars_shape_background_hover_size_mobile_extra\":\"\",\"dark_bars_shape_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_background_active_color_mobile_extra\":\"\",\"dark_bars_shape_background_active_position_mobile_extra\":\"\",\"dark_bars_shape_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_active_repeat_mobile_extra\":\"\",\"dark_bars_shape_background_active_size_mobile_extra\":\"\",\"dark_bars_shape_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-menu\"}],\"isInner\":true},{\"id\":\"73f4664\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#F7F8FA\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"20\",\"bottom\":\"35\",\"left\":\"20\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d49adb7\"},{\"_id\":\"675d47e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1ae6515\"},{\"_id\":\"1cb0e0c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"c97f8ff\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get a Free Quote\",\"_id\":\"ff7284f\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h5\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_weight\":\"700\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"69224e4\"},{\"_id\":\"248b296\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a96cfa\"},{\"_id\":\"9ed33e4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9c2ff24\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1267***1702649671142\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6bd7540\"},{\"_id\":\"21b2e8c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"aadb57a\"},{\"_id\":\"d8f7f2a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":true},{\"id\":\"8773d9a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#70707026\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6e242bc\"},{\"_id\":\"315473b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"5e439a0\"},{\"_id\":\"749a123\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"61e88cf\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":\"akar-icons ai-phone\",\"library\":\"akar-icons\"},\"title\":\"Toll Free Call Center:\",\"title_tag\":\"h4\",\"subtitle\":\"+48 4348 80 32\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"f031299\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"icon_inline\":\"yes\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"icon\"],\"separate_content_placement\":\"start\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"55\",\"height\":\"55\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[{\"_id\":\"20b8679\",\"background\":\"color\",\"color\":\"var(--e-global-color-d5f65f9)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"icon_border_radius\":{\"unit\":\"em\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"icon_border_radius_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_background_hover_liquid_background_items\":[{\"_id\":\"7e9b113\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"title_color\":\"#0A0A0A\",\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"48e8307\"},{\"_id\":\"d70b8cd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"63036df\"},{\"_id\":\"45100fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"\"},\"icon_effect_hover\":\"scale-up\",\"icon_color_hover\":\"var(--e-global-color-d5f65f9)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"icon_color\":\"var(--e-global-color-primary)\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b44792a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":70},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_order_mobile_extra\":\"start\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcd3325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":1198,\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-ocean-explorer\\/wp-content\\/uploads\\/2023\\/12\\/portfoliodetail1-1.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#181B31\",\"background_overlay_color_b\":\"#181B3100\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1f92d0f\"},{\"_id\":\"e00b7b0\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a6e3bab\"},{\"_id\":\"859f278\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"46b3301\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"title\":\"Research and Development\",\"subtitle\":\"Business Analytics\",\"description\":\"
Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"586071c\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"start\",\"image_align_v\":\"start\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_color\":\"var(--e-global-color-3774f73)\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-3774f73)\",\"subtitle_color\":\"var(--e-global-color-3774f73)\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_color\":\"var(--e-global-color-e0f18b6)\",\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_flex_align_self\":\"flex-start\",\"_offset_x\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6674e15\"},{\"_id\":\"da3541c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d25886d\"},{\"_id\":\"27c5a05\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_color\":\"#161B2D\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_background_color_b\":\"#161B2D00\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"image_height_mobile\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"_element_width\":\"inherit\",\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"d9d090c\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Data Analysis\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"33fa515\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Take advantage of the experiential-learning opportunities built into many programs. You can work in\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"labs on and off campus or even spend semesters overseas. One Construction employs over 3 000\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"employees, the majority of whom are based on project sites.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9461aef\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"We embrace holistic development and support for employees with the aim of being a first-choice\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"employer within our sectors. Through a unique combination of engineering, construction and design\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"disciplines and expertise.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"fcf8eeb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#0000001A\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"70f2627\"},{\"_id\":\"4374c07\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d11281c\"},{\"_id\":\"1af3491\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile_extra\":\"\",\"gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e5eb7f1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Plan Benefits\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"18607c0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"ba73ae8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b78c57d\"},{\"text\":\"Immediate settlement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"23830fa\"},{\"text\":\"Zero broker commission\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"68315a5\"},{\"text\":\"Guaranteed by the services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"242498d\"},{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ab1361c\"},{\"text\":\"Infrastructure solutions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1416173\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ff9fa0\"},{\"_id\":\"b5d63be\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b38d489\"},{\"_id\":\"a0da9b4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align_mobile_extra\":\"\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f3b0aea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"cc8ab30\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b78c57d\"},{\"text\":\"Immediate settlement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"23830fa\"},{\"text\":\"Zero broker commission\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"68315a5\"},{\"text\":\"Guaranteed by the services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"242498d\"},{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ab1361c\"},{\"text\":\"Infrastructure solutions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1416173\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ff9fa0\"},{\"_id\":\"b5d63be\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b38d489\"},{\"_id\":\"a0da9b4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align_mobile_extra\":\"\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8b98ef6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#0000001A\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"70f2627\"},{\"_id\":\"4374c07\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d11281c\"},{\"_id\":\"1af3491\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile_extra\":\"\",\"gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e902ab\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Questions? You\\u2019re covered.\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ac6f247\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Guaranteed by the trusted aviation services\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"06952c9\"},{\"title\":\"Professional end to end encryption for companies\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"2bee43d\"},{\"title\":\"Zero broker commission for data research and analysis\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"af5f361\"}],\"title_tag\":\"h5\",\"enable_trigger_icon\":\"\",\"item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"trigger_typography_typography\":\"custom\",\"trigger_padding\":{\"unit\":\"em\",\"top\":\"1.1\",\"right\":\"1.5\",\"bottom\":\"1.1\",\"left\":\"1.5\",\"isLinked\":false},\"trigger_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"trigger_border_color\":\"#E8792F4C\",\"trigger_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"trigger_color_hover\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_hover_background\":\"color\",\"trigger_background_hover_color\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_active_background\":\"color\",\"trigger_background_active_color\":\"var(--e-global-color-primary)\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_color\":\"#5F6973\",\"content_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"117e394\"},{\"_id\":\"aec0c81\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4b5bb1e\"},{\"_id\":\"8e0f48d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_color\":\"var(--e-global-color-fb85fbd)\",\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_mobile_extra\":\"\",\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_hover_mobile_extra\":\"\",\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_active_mobile_extra\":\"\",\"item_background_active_color_mobile_extra\":\"\",\"item_background_active_position_mobile_extra\":\"\",\"item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_repeat_mobile_extra\":\"\",\"item_background_active_size_mobile_extra\":\"\",\"item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_color_mobile_extra\":\"\",\"trigger_background_color_mobile_extra\":\"\",\"trigger_background_position_mobile_extra\":\"\",\"trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_mobile_extra\":\"\",\"trigger_background_size_mobile_extra\":\"\",\"trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_hover_mobile_extra\":\"\",\"trigger_background_hover_color_mobile_extra\":\"\",\"trigger_background_hover_position_mobile_extra\":\"\",\"trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_mobile_extra\":\"\",\"trigger_background_hover_size_mobile_extra\":\"\",\"trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_border\":\"solid\",\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_color\":\"var(--e-global-color-fb85fbd)\",\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_active_mobile_extra\":\"\",\"trigger_background_active_color_mobile_extra\":\"\",\"trigger_background_active_position_mobile_extra\":\"\",\"trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_mobile_extra\":\"\",\"trigger_background_active_size_mobile_extra\":\"\",\"trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_border\":\"solid\",\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_color\":\"var(--e-global-color-fae38d5)\",\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"trigger_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_mobile_extra\":\"\",\"trigger_icon_background_color_mobile_extra\":\"\",\"trigger_icon_background_position_mobile_extra\":\"\",\"trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_repeat_mobile_extra\":\"\",\"trigger_icon_background_size_mobile_extra\":\"\",\"trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_hover_mobile_extra\":\"\",\"trigger_icon_background_hover_color_mobile_extra\":\"\",\"trigger_icon_background_hover_position_mobile_extra\":\"\",\"trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"trigger_icon_background_hover_size_mobile_extra\":\"\",\"trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_active_mobile_extra\":\"\",\"trigger_icon_background_active_color_mobile_extra\":\"\",\"trigger_icon_background_active_position_mobile_extra\":\"\",\"trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_repeat_mobile_extra\":\"\",\"trigger_icon_background_active_size_mobile_extra\":\"\",\"trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_color_mobile_extra\":\"\",\"content_background_color_mobile_extra\":\"\",\"content_background_position_mobile_extra\":\"\",\"content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_repeat_mobile_extra\":\"\",\"content_background_size_mobile_extra\":\"\",\"content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_mobile_extra\":\"\",\"lqd_sticky_item_background_color_mobile_extra\":\"\",\"lqd_sticky_item_background_position_mobile_extra\":\"\",\"lqd_sticky_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_size_mobile_extra\":\"\",\"lqd_sticky_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_hover_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_active_mobile_extra\":\"\",\"lqd_sticky_item_background_active_color_mobile_extra\":\"\",\"lqd_sticky_item_background_active_position_mobile_extra\":\"\",\"lqd_sticky_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_active_size_mobile_extra\":\"\",\"lqd_sticky_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_color_mobile_extra\":\"\",\"lqd_sticky_content_background_color_mobile_extra\":\"\",\"lqd_sticky_content_background_position_mobile_extra\":\"\",\"lqd_sticky_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_background_size_mobile_extra\":\"\",\"lqd_sticky_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_color_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_hover_mobile_extra\":\"\",\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_active_mobile_extra\":\"\",\"dark_item_background_active_color_mobile_extra\":\"\",\"dark_item_background_active_position_mobile_extra\":\"\",\"dark_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_repeat_mobile_extra\":\"\",\"dark_item_background_active_size_mobile_extra\":\"\",\"dark_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_mobile_extra\":\"\",\"dark_trigger_background_color_mobile_extra\":\"\",\"dark_trigger_background_position_mobile_extra\":\"\",\"dark_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_mobile_extra\":\"\",\"dark_trigger_background_size_mobile_extra\":\"\",\"dark_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_hover_mobile_extra\":\"\",\"dark_trigger_background_hover_color_mobile_extra\":\"\",\"dark_trigger_background_hover_position_mobile_extra\":\"\",\"dark_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_background_hover_size_mobile_extra\":\"\",\"dark_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_active_mobile_extra\":\"\",\"dark_trigger_background_active_color_mobile_extra\":\"\",\"dark_trigger_background_active_position_mobile_extra\":\"\",\"dark_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_background_active_size_mobile_extra\":\"\",\"dark_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_mobile_extra\":\"\",\"dark_trigger_icon_background_color_mobile_extra\":\"\",\"dark_trigger_icon_background_position_mobile_extra\":\"\",\"dark_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_size_mobile_extra\":\"\",\"dark_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_hover_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_color_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_position_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_size_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_active_mobile_extra\":\"\",\"dark_trigger_icon_background_active_color_mobile_extra\":\"\",\"dark_trigger_icon_background_active_position_mobile_extra\":\"\",\"dark_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_active_size_mobile_extra\":\"\",\"dark_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_color_mobile_extra\":\"\",\"dark_content_background_color_mobile_extra\":\"\",\"dark_content_background_position_mobile_extra\":\"\",\"dark_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_repeat_mobile_extra\":\"\",\"dark_content_background_size_mobile_extra\":\"\",\"dark_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(105, 1195, '_thumbnail_id', '1239'),
(106, 1204, '_wp_page_template', 'default'),
(107, 1204, '_elementor_edit_mode', 'builder'),
(108, 1204, '_elementor_template_type', 'wp-post'),
(109, 1204, '_elementor_version', '3.18.2'),
(110, 1204, '_elementor_page_settings', 'a:7:{s:20:\"portfolio_attributes\";s:22:\"Client | Liquid Themes\";s:36:\"lqd_page_title_wrapper_bg_background\";s:5:\"image\";s:31:\"lqd_page_title_wrapper_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:34:\"lqd_page_title_wrapper_bg_position\";s:13:\"center center\";s:36:\"lqd_page_title_wrapper_bg_attachment\";s:5:\"fixed\";s:32:\"lqd_page_title_wrapper_bg_repeat\";s:9:\"no-repeat\";s:30:\"lqd_page_title_wrapper_bg_size\";s:5:\"cover\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(111, 1204, '_elementor_data', '[{\"id\":\"8bd2100\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce6b579\"},{\"_id\":\"d5a3991\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2ec3ce6\"},{\"_id\":\"2ebd75a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"0c74dfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9d26eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d49adb7\"},{\"_id\":\"675d47e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1ae6515\"},{\"_id\":\"1cb0e0c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F7F8FA\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"6312c96\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get a Free Quote\",\"_id\":\"ff7284f\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h5\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_weight\":\"700\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"69224e4\"},{\"_id\":\"248b296\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a96cfa\"},{\"_id\":\"9ed33e4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"7145f99\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Date:\",\"title_tag\":\"h5\",\"subtitle\":\"Sep 2021\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"0bee643\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Client:\",\"title_tag\":\"h5\",\"subtitle\":\"Apple Inc.\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"4a290e6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Location:\",\"title_tag\":\"h5\",\"subtitle\":\"London, UK\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"2b2070d\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Task:\",\"title_tag\":\"h5\",\"subtitle\":\"Data Analysis\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"57e2da6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#F7F8FA\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"20\",\"bottom\":\"35\",\"left\":\"20\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d49adb7\"},{\"_id\":\"675d47e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1ae6515\"},{\"_id\":\"1cb0e0c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"39c9528\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get a Free Quote\",\"_id\":\"ff7284f\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h5\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_weight\":\"700\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"69224e4\"},{\"_id\":\"248b296\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a96cfa\"},{\"_id\":\"9ed33e4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"3dfa38a\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1267***1702649627170\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6bd7540\"},{\"_id\":\"21b2e8c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"aadb57a\"},{\"_id\":\"d8f7f2a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":true},{\"id\":\"728d60e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#70707026\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6e242bc\"},{\"_id\":\"315473b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"5e439a0\"},{\"_id\":\"749a123\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"c9d1670\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":\"akar-icons ai-phone\",\"library\":\"akar-icons\"},\"title\":\"Toll Free Call Center:\",\"title_tag\":\"h4\",\"subtitle\":\"+48 4348 80 32\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"f031299\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"icon_inline\":\"yes\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"icon\"],\"separate_content_placement\":\"start\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"55\",\"height\":\"55\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[{\"_id\":\"20b8679\",\"background\":\"color\",\"color\":\"var(--e-global-color-d5f65f9)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"icon_border_radius\":{\"unit\":\"em\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"icon_border_radius_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_background_hover_liquid_background_items\":[{\"_id\":\"7e9b113\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"title_color\":\"#0A0A0A\",\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"48e8307\"},{\"_id\":\"d70b8cd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"63036df\"},{\"_id\":\"45100fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"\"},\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_effect_hover\":\"scale-up\",\"icon_color_hover\":\"var(--e-global-color-d5f65f9)\",\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"icon_color\":\"var(--e-global-color-primary)\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63d239b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":70},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d14a5ef\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Data Analysis\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"f50f0c8\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Take advantage of the experiential-learning opportunities built into many programs. You can work in\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"labs on and off campus or even spend semesters overseas. One Construction employs over 3 000\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"employees, the majority of whom are based on project sites.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"e5d09f8\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"We embrace holistic development and support for employees with the aim of being a first-choice\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"employer within our sectors. Through a unique combination of engineering, construction and design\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"disciplines and expertise.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"b8f5b35\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8ee88d7\"},{\"_id\":\"cb006a9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"55ffdc2\"},{\"_id\":\"86ace83\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"5079581\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"flex_justify_content_tablet\":\"space-between\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#EBEBEB\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"cd17c04\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Plan Benefits\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d4679e9\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Through a unique combination of engineering,\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"construction and design disciplines and expertise,\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"Concor delivers world class infrastructure solutions.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d008863\",\"text\":\"We embrace holistic development and support for employees.\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d2dba39\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"button_expand\":\"yes\",\"justify_btn_content\":\"center\",\"color_normal\":\"var(--e-global-color-d5f65f9)\",\"background_normal_liquid_background_items\":[{\"_id\":\"3557b65\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"border_radius_normal\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_hover_liquid_background_items\":[{\"_id\":\"dc82928\",\"background\":\"color\",\"color\":\"var(--e-global-color-47490ef)\"}],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"32bfc9d\"},{\"_id\":\"7deb9d7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1d1a1aa\"},{\"_id\":\"54ec966\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"align_mobile_extra\":\"\",\"local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_expand_mobile_extra\":\"\",\"justify_btn_content_mobile_extra\":\"\",\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"color_hover\":\"var(--e-global-color-d5f65f9)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"c15fba2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EBEBEB\",\"flex_justify_content\":\"center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"c605cd3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b78c57d\"},{\"text\":\"Immediate settlement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"23830fa\"},{\"text\":\"Zero broker commission\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"68315a5\"},{\"text\":\"Guaranteed by the services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"242498d\"},{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ab1361c\"},{\"text\":\"Infrastructure solutions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1416173\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ff9fa0\"},{\"_id\":\"b5d63be\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b38d489\"},{\"_id\":\"a0da9b4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align_mobile_extra\":\"\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cc969d9\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Questions? You\\u2019re covered.\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"1b303a2\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Guaranteed by the trusted aviation services\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"06952c9\"},{\"title\":\"Professional end to end encryption for companies\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"2bee43d\"},{\"title\":\"Zero broker commission for data research and analysis\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"af5f361\"}],\"title_tag\":\"h5\",\"enable_trigger_icon\":\"\",\"item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"trigger_typography_typography\":\"custom\",\"trigger_padding\":{\"unit\":\"em\",\"top\":\"1.1\",\"right\":\"1.5\",\"bottom\":\"1.1\",\"left\":\"1.5\",\"isLinked\":false},\"trigger_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"trigger_border_color\":\"#E8792F4C\",\"trigger_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"trigger_color_hover\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_hover_background\":\"color\",\"trigger_background_hover_color\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_active_background\":\"color\",\"trigger_background_active_color\":\"var(--e-global-color-primary)\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_color\":\"#5F6973\",\"content_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"117e394\"},{\"_id\":\"aec0c81\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4b5bb1e\"},{\"_id\":\"8e0f48d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_color\":\"var(--e-global-color-fb85fbd)\",\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_mobile_extra\":\"\",\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_hover_mobile_extra\":\"\",\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_active_mobile_extra\":\"\",\"item_background_active_color_mobile_extra\":\"\",\"item_background_active_position_mobile_extra\":\"\",\"item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_repeat_mobile_extra\":\"\",\"item_background_active_size_mobile_extra\":\"\",\"item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_color_mobile_extra\":\"\",\"trigger_background_color_mobile_extra\":\"\",\"trigger_background_position_mobile_extra\":\"\",\"trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_mobile_extra\":\"\",\"trigger_background_size_mobile_extra\":\"\",\"trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_hover_mobile_extra\":\"\",\"trigger_background_hover_color_mobile_extra\":\"\",\"trigger_background_hover_position_mobile_extra\":\"\",\"trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_mobile_extra\":\"\",\"trigger_background_hover_size_mobile_extra\":\"\",\"trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_border\":\"solid\",\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_color\":\"var(--e-global-color-fb85fbd)\",\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_active_mobile_extra\":\"\",\"trigger_background_active_color_mobile_extra\":\"\",\"trigger_background_active_position_mobile_extra\":\"\",\"trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_mobile_extra\":\"\",\"trigger_background_active_size_mobile_extra\":\"\",\"trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_border\":\"solid\",\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_color\":\"var(--e-global-color-fae38d5)\",\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"trigger_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_mobile_extra\":\"\",\"trigger_icon_background_color_mobile_extra\":\"\",\"trigger_icon_background_position_mobile_extra\":\"\",\"trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_repeat_mobile_extra\":\"\",\"trigger_icon_background_size_mobile_extra\":\"\",\"trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_hover_mobile_extra\":\"\",\"trigger_icon_background_hover_color_mobile_extra\":\"\",\"trigger_icon_background_hover_position_mobile_extra\":\"\",\"trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"trigger_icon_background_hover_size_mobile_extra\":\"\",\"trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_active_mobile_extra\":\"\",\"trigger_icon_background_active_color_mobile_extra\":\"\",\"trigger_icon_background_active_position_mobile_extra\":\"\",\"trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_repeat_mobile_extra\":\"\",\"trigger_icon_background_active_size_mobile_extra\":\"\",\"trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_color_mobile_extra\":\"\",\"content_background_color_mobile_extra\":\"\",\"content_background_position_mobile_extra\":\"\",\"content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_repeat_mobile_extra\":\"\",\"content_background_size_mobile_extra\":\"\",\"content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_mobile_extra\":\"\",\"lqd_sticky_item_background_color_mobile_extra\":\"\",\"lqd_sticky_item_background_position_mobile_extra\":\"\",\"lqd_sticky_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_size_mobile_extra\":\"\",\"lqd_sticky_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_hover_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_active_mobile_extra\":\"\",\"lqd_sticky_item_background_active_color_mobile_extra\":\"\",\"lqd_sticky_item_background_active_position_mobile_extra\":\"\",\"lqd_sticky_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_active_size_mobile_extra\":\"\",\"lqd_sticky_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_color_mobile_extra\":\"\",\"lqd_sticky_content_background_color_mobile_extra\":\"\",\"lqd_sticky_content_background_position_mobile_extra\":\"\",\"lqd_sticky_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_background_size_mobile_extra\":\"\",\"lqd_sticky_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_color_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_hover_mobile_extra\":\"\",\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_active_mobile_extra\":\"\",\"dark_item_background_active_color_mobile_extra\":\"\",\"dark_item_background_active_position_mobile_extra\":\"\",\"dark_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_repeat_mobile_extra\":\"\",\"dark_item_background_active_size_mobile_extra\":\"\",\"dark_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_mobile_extra\":\"\",\"dark_trigger_background_color_mobile_extra\":\"\",\"dark_trigger_background_position_mobile_extra\":\"\",\"dark_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_mobile_extra\":\"\",\"dark_trigger_background_size_mobile_extra\":\"\",\"dark_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_hover_mobile_extra\":\"\",\"dark_trigger_background_hover_color_mobile_extra\":\"\",\"dark_trigger_background_hover_position_mobile_extra\":\"\",\"dark_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_background_hover_size_mobile_extra\":\"\",\"dark_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_active_mobile_extra\":\"\",\"dark_trigger_background_active_color_mobile_extra\":\"\",\"dark_trigger_background_active_position_mobile_extra\":\"\",\"dark_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_background_active_size_mobile_extra\":\"\",\"dark_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_mobile_extra\":\"\",\"dark_trigger_icon_background_color_mobile_extra\":\"\",\"dark_trigger_icon_background_position_mobile_extra\":\"\",\"dark_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_size_mobile_extra\":\"\",\"dark_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_hover_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_color_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_position_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_size_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_active_mobile_extra\":\"\",\"dark_trigger_icon_background_active_color_mobile_extra\":\"\",\"dark_trigger_icon_background_active_position_mobile_extra\":\"\",\"dark_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_active_size_mobile_extra\":\"\",\"dark_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_color_mobile_extra\":\"\",\"dark_content_background_color_mobile_extra\":\"\",\"dark_content_background_position_mobile_extra\":\"\",\"dark_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_repeat_mobile_extra\":\"\",\"dark_content_background_size_mobile_extra\":\"\",\"dark_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(113, 1204, '_thumbnail_id', '1238'),
(114, 1211, '_wp_page_template', 'default'),
(115, 1211, '_elementor_edit_mode', 'builder'),
(116, 1211, '_elementor_template_type', 'wp-post'),
(117, 1211, '_elementor_version', '3.18.2'),
(118, 1211, '_elementor_page_settings', 'a:7:{s:20:\"portfolio_attributes\";s:22:\"Client | Liquid Themes\";s:36:\"lqd_page_title_wrapper_bg_background\";s:5:\"image\";s:31:\"lqd_page_title_wrapper_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:34:\"lqd_page_title_wrapper_bg_position\";s:13:\"center center\";s:36:\"lqd_page_title_wrapper_bg_attachment\";s:5:\"fixed\";s:32:\"lqd_page_title_wrapper_bg_repeat\";s:9:\"no-repeat\";s:30:\"lqd_page_title_wrapper_bg_size\";s:5:\"cover\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(119, 1211, '_elementor_data', '[{\"id\":\"25723da\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce6b579\"},{\"_id\":\"d5a3991\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2ec3ce6\"},{\"_id\":\"2ebd75a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"b04ccd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"a3af246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"9029e6b\"},{\"_id\":\"9f7140c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"44befc9\"},{\"_id\":\"812288b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"f5a86bc\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"portfolio\",\"custom_menu\":[{\"label\":\"Home\",\"link\":{\"url\":\"#home\"},\"_id\":\"38d3a3e\"},{\"label\":\"About\",\"link\":{\"url\":\"#about\"},\"_id\":\"fa1a31a\"},{\"label\":\"Services\",\"link\":{\"url\":\"#services\"},\"_id\":\"85230c8\"}],\"individual_item_styles\":[],\"trigger_text\":\"\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64806\"},{\"_id\":\"6a49b34\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"66d0a48\"},{\"_id\":\"0ee03e0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"items_orientation\":\"column\",\"localscroll\":\"yes\",\"mobile_dropdown\":\"yes\",\"ul_top_gap\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"li_top_typography_typography\":\"custom\",\"li_top_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"li_top_typography_font_weight\":\"700\",\"li_top_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.6\",\"bottom\":\"1\",\"left\":\"1.6\",\"isLinked\":false},\"li_top_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_background_background\":\"color\",\"li_top_background_color\":\"#F7F8FA\",\"trigger_type\":\"none\",\"__globals__\":{\"li_top_typography_typography\":\"\"},\"li_top_color_hover\":\"var(--e-global-color-d5f65f9)\",\"li_top_background_hover_background\":\"color\",\"li_top_background_hover_color\":\"var(--e-global-color-primary)\",\"li_top_color_active\":\"var(--e-global-color-d5f65f9)\",\"li_top_background_active_background\":\"color\",\"li_top_background_active_color\":\"var(--e-global-color-primary)\",\"items_orientation_mobile_extra\":\"\",\"items_orientation_li_width_mobile_extra\":\"\",\"items_align_mobile_extra\":\"\",\"items_h_align_mobile_extra\":\"\",\"items_wrap_mobile_extra\":\"\",\"localscroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_breakpoint_mobile_extra\":\"\",\"mobile_dropdown_breakpoint_mobile_extra_position\":\"yes\",\"submenu_items_orientation_mobile_extra\":\"\",\"submenu_dropdown_pos_mobile_extra\":\"\",\"submenu_items_align_mobile_extra\":\"\",\"submenu_items_wrap_mobile_extra\":\"\",\"submenu_items_h_align_mobile_extra\":\"\",\"decorators_top_active_orientation_h_mobile_extra\":\"\",\"decorators_top_active_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_orientation_v_mobile_extra\":\"\",\"decorators_top_active_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_position_h_mobile_extra\":\"\",\"ul_top_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_position_v_mobile_extra\":\"\",\"ul_top_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_background_color_mobile_extra\":\"\",\"ul_top_background_position_mobile_extra\":\"\",\"ul_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_repeat_mobile_extra\":\"\",\"ul_top_background_size_mobile_extra\":\"\",\"ul_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_background_hover_color_mobile_extra\":\"\",\"ul_top_background_hover_position_mobile_extra\":\"\",\"ul_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_hover_repeat_mobile_extra\":\"\",\"ul_top_background_hover_size_mobile_extra\":\"\",\"ul_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_color\":\"var(--e-global-color-5b35d73)\",\"li_top_color_mobile_extra\":\"\",\"li_top_background_color_mobile_extra\":\"\",\"li_top_background_position_mobile_extra\":\"\",\"li_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_repeat_mobile_extra\":\"\",\"li_top_background_size_mobile_extra\":\"\",\"li_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_color_hover_mobile_extra\":\"\",\"li_top_background_hover_color_mobile_extra\":\"\",\"li_top_background_hover_position_mobile_extra\":\"\",\"li_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_hover_repeat_mobile_extra\":\"\",\"li_top_background_hover_size_mobile_extra\":\"\",\"li_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_color_active_mobile_extra\":\"\",\"li_top_background_active_color_mobile_extra\":\"\",\"li_top_background_active_position_mobile_extra\":\"\",\"li_top_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_active_repeat_mobile_extra\":\"\",\"li_top_background_active_size_mobile_extra\":\"\",\"li_top_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_opacity_active_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_position_h_mobile_extra\":\"\",\"dropdown_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_position_v_mobile_extra\":\"\",\"dropdown_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_background_color_mobile_extra\":\"\",\"dropdown_background_position_mobile_extra\":\"\",\"dropdown_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_background_repeat_mobile_extra\":\"\",\"dropdown_background_size_mobile_extra\":\"\",\"dropdown_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_color_mobile_extra\":\"\",\"dropdown_link_background_color_mobile_extra\":\"\",\"dropdown_link_background_position_mobile_extra\":\"\",\"dropdown_link_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_repeat_mobile_extra\":\"\",\"dropdown_link_background_size_mobile_extra\":\"\",\"dropdown_link_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_color_hover_mobile_extra\":\"\",\"dropdown_link_background_hover_color_mobile_extra\":\"\",\"dropdown_link_background_hover_position_mobile_extra\":\"\",\"dropdown_link_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_hover_repeat_mobile_extra\":\"\",\"dropdown_link_background_hover_size_mobile_extra\":\"\",\"dropdown_link_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_background_color_mobile_extra\":\"\",\"icon_background_position_mobile_extra\":\"\",\"icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_repeat_mobile_extra\":\"\",\"icon_background_size_mobile_extra\":\"\",\"icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_background_hover_color_mobile_extra\":\"\",\"icon_background_hover_position_mobile_extra\":\"\",\"icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_hover_repeat_mobile_extra\":\"\",\"icon_background_hover_size_mobile_extra\":\"\",\"icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_active_mobile_extra\":\"\",\"icon_background_active_color_mobile_extra\":\"\",\"icon_background_active_position_mobile_extra\":\"\",\"icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_active_repeat_mobile_extra\":\"\",\"icon_background_active_size_mobile_extra\":\"\",\"icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_color_mobile_extra\":\"\",\"badge_background_color_mobile_extra\":\"\",\"badge_background_position_mobile_extra\":\"\",\"badge_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_repeat_mobile_extra\":\"\",\"badge_background_size_mobile_extra\":\"\",\"badge_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_color_hover_mobile_extra\":\"\",\"badge_background_hover_color_mobile_extra\":\"\",\"badge_background_hover_position_mobile_extra\":\"\",\"badge_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_hover_repeat_mobile_extra\":\"\",\"badge_background_hover_size_mobile_extra\":\"\",\"badge_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_color_active_mobile_extra\":\"\",\"badge_background_active_color_mobile_extra\":\"\",\"badge_background_active_position_mobile_extra\":\"\",\"badge_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_active_repeat_mobile_extra\":\"\",\"badge_background_active_size_mobile_extra\":\"\",\"badge_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"decorators_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_background_color_mobile_extra\":\"\",\"decorators_background_position_mobile_extra\":\"\",\"decorators_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_background_repeat_mobile_extra\":\"\",\"decorators_background_size_mobile_extra\":\"\",\"decorators_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"decorators_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ul_top_background_color_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_position_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_repeat_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_size_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ul_top_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_li_top_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_position_mobile_extra\":\"\",\"lqd_sticky_li_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_repeat_mobile_extra\":\"\",\"lqd_sticky_li_top_background_size_mobile_extra\":\"\",\"lqd_sticky_li_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_li_top_color_hover_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_li_top_color_active_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_position_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_size_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_dropdown_background_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_position_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_background_repeat_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_size_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_dropdown_link_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_position_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_repeat_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_size_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_dropdown_link_color_hover_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_position_mobile_extra\":\"\",\"lqd_sticky_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_repeat_mobile_extra\":\"\",\"lqd_sticky_icon_background_size_mobile_extra\":\"\",\"lqd_sticky_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_active_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_position_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_size_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_badge_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_position_mobile_extra\":\"\",\"lqd_sticky_badge_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_repeat_mobile_extra\":\"\",\"lqd_sticky_badge_background_size_mobile_extra\":\"\",\"lqd_sticky_badge_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_badge_color_hover_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_badge_color_active_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_position_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_size_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_decorators_background_color_mobile_extra\":\"\",\"lqd_sticky_decorators_background_position_mobile_extra\":\"\",\"lqd_sticky_decorators_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_decorators_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_decorators_background_repeat_mobile_extra\":\"\",\"lqd_sticky_decorators_background_size_mobile_extra\":\"\",\"lqd_sticky_decorators_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_decorators_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ul_top_background_color_mobile_extra\":\"\",\"dark_ul_top_background_position_mobile_extra\":\"\",\"dark_ul_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_repeat_mobile_extra\":\"\",\"dark_ul_top_background_size_mobile_extra\":\"\",\"dark_ul_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ul_top_background_hover_color_mobile_extra\":\"\",\"dark_ul_top_background_hover_position_mobile_extra\":\"\",\"dark_ul_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_hover_repeat_mobile_extra\":\"\",\"dark_ul_top_background_hover_size_mobile_extra\":\"\",\"dark_ul_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_li_top_color_mobile_extra\":\"\",\"dark_li_top_background_color_mobile_extra\":\"\",\"dark_li_top_background_position_mobile_extra\":\"\",\"dark_li_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_repeat_mobile_extra\":\"\",\"dark_li_top_background_size_mobile_extra\":\"\",\"dark_li_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_li_top_color_hover_mobile_extra\":\"\",\"dark_li_top_background_hover_color_mobile_extra\":\"\",\"dark_li_top_background_hover_position_mobile_extra\":\"\",\"dark_li_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_hover_repeat_mobile_extra\":\"\",\"dark_li_top_background_hover_size_mobile_extra\":\"\",\"dark_li_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_li_top_color_active_mobile_extra\":\"\",\"dark_li_top_background_active_color_mobile_extra\":\"\",\"dark_li_top_background_active_position_mobile_extra\":\"\",\"dark_li_top_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_active_repeat_mobile_extra\":\"\",\"dark_li_top_background_active_size_mobile_extra\":\"\",\"dark_li_top_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_dropdown_background_color_mobile_extra\":\"\",\"dark_dropdown_background_position_mobile_extra\":\"\",\"dark_dropdown_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_background_repeat_mobile_extra\":\"\",\"dark_dropdown_background_size_mobile_extra\":\"\",\"dark_dropdown_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_dropdown_link_color_mobile_extra\":\"\",\"dark_dropdown_link_background_color_mobile_extra\":\"\",\"dark_dropdown_link_background_position_mobile_extra\":\"\",\"dark_dropdown_link_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_repeat_mobile_extra\":\"\",\"dark_dropdown_link_background_size_mobile_extra\":\"\",\"dark_dropdown_link_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_dropdown_link_color_hover_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_color_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_position_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_hover_repeat_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_size_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_background_color_mobile_extra\":\"\",\"dark_icon_background_position_mobile_extra\":\"\",\"dark_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_repeat_mobile_extra\":\"\",\"dark_icon_background_size_mobile_extra\":\"\",\"dark_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_background_hover_color_mobile_extra\":\"\",\"dark_icon_background_hover_position_mobile_extra\":\"\",\"dark_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_hover_repeat_mobile_extra\":\"\",\"dark_icon_background_hover_size_mobile_extra\":\"\",\"dark_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_active_mobile_extra\":\"\",\"dark_icon_background_active_color_mobile_extra\":\"\",\"dark_icon_background_active_position_mobile_extra\":\"\",\"dark_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_active_repeat_mobile_extra\":\"\",\"dark_icon_background_active_size_mobile_extra\":\"\",\"dark_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_badge_color_mobile_extra\":\"\",\"dark_badge_background_color_mobile_extra\":\"\",\"dark_badge_background_position_mobile_extra\":\"\",\"dark_badge_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_repeat_mobile_extra\":\"\",\"dark_badge_background_size_mobile_extra\":\"\",\"dark_badge_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_badge_color_hover_mobile_extra\":\"\",\"dark_badge_background_hover_color_mobile_extra\":\"\",\"dark_badge_background_hover_position_mobile_extra\":\"\",\"dark_badge_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_hover_repeat_mobile_extra\":\"\",\"dark_badge_background_hover_size_mobile_extra\":\"\",\"dark_badge_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_badge_color_active_mobile_extra\":\"\",\"dark_badge_background_active_color_mobile_extra\":\"\",\"dark_badge_background_active_position_mobile_extra\":\"\",\"dark_badge_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_active_repeat_mobile_extra\":\"\",\"dark_badge_background_active_size_mobile_extra\":\"\",\"dark_badge_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_decorators_background_color_mobile_extra\":\"\",\"dark_decorators_background_position_mobile_extra\":\"\",\"dark_decorators_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_decorators_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_decorators_background_repeat_mobile_extra\":\"\",\"dark_decorators_background_size_mobile_extra\":\"\",\"dark_decorators_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_decorators_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mobile_dropdown_width_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_orientation_h_mobile_extra\":\"start\",\"mobile_dropdown_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_orientation_v_mobile_extra\":\"top\",\"mobile_dropdown_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_justify_content_mobile_extra\":\"\",\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_color_mobile_extra\":\"\",\"trigger_background_position_mobile_extra\":\"\",\"trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_mobile_extra\":\"\",\"trigger_background_size_mobile_extra\":\"\",\"trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_hover_color_mobile_extra\":\"\",\"trigger_background_hover_position_mobile_extra\":\"\",\"trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_mobile_extra\":\"\",\"trigger_background_hover_size_mobile_extra\":\"\",\"trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_active_color_mobile_extra\":\"\",\"trigger_background_active_position_mobile_extra\":\"\",\"trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_mobile_extra\":\"\",\"trigger_background_active_size_mobile_extra\":\"\",\"trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_first_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_first_mobile_extra\":\"\",\"bars_width_second_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_second_mobile_extra\":\"\",\"bars_width_third_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_third_mobile_extra\":\"\",\"bars_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_color_mobile_extra\":\"\",\"bars_background_position_mobile_extra\":\"\",\"bars_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_repeat_mobile_extra\":\"\",\"bars_background_size_mobile_extra\":\"\",\"bars_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_color_mobile_extra\":\"\",\"bars_background_hover_position_mobile_extra\":\"\",\"bars_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_repeat_mobile_extra\":\"\",\"bars_background_hover_size_mobile_extra\":\"\",\"bars_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_color_mobile_extra\":\"\",\"bars_background_active_position_mobile_extra\":\"\",\"bars_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_repeat_mobile_extra\":\"\",\"bars_background_active_size_mobile_extra\":\"\",\"bars_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"bars_shape_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_color_mobile_extra\":\"\",\"bars_shape_background_position_mobile_extra\":\"\",\"bars_shape_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_repeat_mobile_extra\":\"\",\"bars_shape_background_size_mobile_extra\":\"\",\"bars_shape_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_hover_color_mobile_extra\":\"\",\"bars_shape_background_hover_position_mobile_extra\":\"\",\"bars_shape_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_hover_repeat_mobile_extra\":\"\",\"bars_shape_background_hover_size_mobile_extra\":\"\",\"bars_shape_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_active_color_mobile_extra\":\"\",\"bars_shape_background_active_position_mobile_extra\":\"\",\"bars_shape_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_active_repeat_mobile_extra\":\"\",\"bars_shape_background_active_size_mobile_extra\":\"\",\"bars_shape_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_background_color_mobile_extra\":\"\",\"lqd_sticky_bars_background_position_mobile_extra\":\"\",\"lqd_sticky_bars_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_background_size_mobile_extra\":\"\",\"lqd_sticky_bars_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_color_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_position_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_size_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_color_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_position_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_size_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_background_active_color_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_position_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_size_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_color_mobile_extra\":\"\",\"dark_trigger_background_position_mobile_extra\":\"\",\"dark_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_mobile_extra\":\"\",\"dark_trigger_background_size_mobile_extra\":\"\",\"dark_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_hover_color_mobile_extra\":\"\",\"dark_trigger_background_hover_position_mobile_extra\":\"\",\"dark_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_background_hover_size_mobile_extra\":\"\",\"dark_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_active_color_mobile_extra\":\"\",\"dark_trigger_background_active_position_mobile_extra\":\"\",\"dark_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_background_active_size_mobile_extra\":\"\",\"dark_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_background_color_mobile_extra\":\"\",\"dark_bars_background_position_mobile_extra\":\"\",\"dark_bars_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_repeat_mobile_extra\":\"\",\"dark_bars_background_size_mobile_extra\":\"\",\"dark_bars_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_color_mobile_extra\":\"\",\"dark_bars_background_hover_position_mobile_extra\":\"\",\"dark_bars_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_repeat_mobile_extra\":\"\",\"dark_bars_background_hover_size_mobile_extra\":\"\",\"dark_bars_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_color_mobile_extra\":\"\",\"dark_bars_background_active_position_mobile_extra\":\"\",\"dark_bars_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_repeat_mobile_extra\":\"\",\"dark_bars_background_active_size_mobile_extra\":\"\",\"dark_bars_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_color_mobile_extra\":\"\",\"dark_bars_shape_background_position_mobile_extra\":\"\",\"dark_bars_shape_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_repeat_mobile_extra\":\"\",\"dark_bars_shape_background_size_mobile_extra\":\"\",\"dark_bars_shape_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_background_hover_color_mobile_extra\":\"\",\"dark_bars_shape_background_hover_position_mobile_extra\":\"\",\"dark_bars_shape_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_hover_repeat_mobile_extra\":\"\",\"dark_bars_shape_background_hover_size_mobile_extra\":\"\",\"dark_bars_shape_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_background_active_color_mobile_extra\":\"\",\"dark_bars_shape_background_active_position_mobile_extra\":\"\",\"dark_bars_shape_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_active_repeat_mobile_extra\":\"\",\"dark_bars_shape_background_active_size_mobile_extra\":\"\",\"dark_bars_shape_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-menu\"}],\"isInner\":true},{\"id\":\"c9db5b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#F7F8FA\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"20\",\"bottom\":\"35\",\"left\":\"20\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d49adb7\"},{\"_id\":\"675d47e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1ae6515\"},{\"_id\":\"1cb0e0c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"c9a40fe\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get a Free Quote\",\"_id\":\"ff7284f\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h5\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_weight\":\"700\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"69224e4\"},{\"_id\":\"248b296\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a96cfa\"},{\"_id\":\"9ed33e4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"f15f3de\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1267***1702649458645\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6bd7540\"},{\"_id\":\"21b2e8c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"aadb57a\"},{\"_id\":\"d8f7f2a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":true},{\"id\":\"d37dd3d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#70707026\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6e242bc\"},{\"_id\":\"315473b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"5e439a0\"},{\"_id\":\"749a123\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"d8c555f\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":\"akar-icons ai-phone\",\"library\":\"akar-icons\"},\"title\":\"Toll Free Call Center:\",\"title_tag\":\"h4\",\"subtitle\":\"+48 4348 80 32\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"f031299\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"icon_inline\":\"yes\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"icon\"],\"separate_content_placement\":\"start\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"55\",\"height\":\"55\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[{\"_id\":\"20b8679\",\"background\":\"color\",\"color\":\"var(--e-global-color-d5f65f9)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"icon_border_radius\":{\"unit\":\"em\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"icon_border_radius_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_background_hover_liquid_background_items\":[{\"_id\":\"7e9b113\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"title_color\":\"#0A0A0A\",\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"48e8307\"},{\"_id\":\"d70b8cd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"63036df\"},{\"_id\":\"45100fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"\"},\"icon_effect_hover\":\"scale-up\",\"icon_color_hover\":\"var(--e-global-color-d5f65f9)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"icon_color\":\"var(--e-global-color-primary)\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe0c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":70},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_order_mobile_extra\":\"start\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\"},\"elements\":[{\"id\":\"64900f4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":1198,\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-ocean-explorer\\/wp-content\\/uploads\\/2023\\/12\\/portfoliodetail1-1.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#181B31\",\"background_overlay_color_b\":\"#181B3100\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1f92d0f\"},{\"_id\":\"e00b7b0\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a6e3bab\"},{\"_id\":\"859f278\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"a3edf5b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"title\":\"Research and Development\",\"subtitle\":\"Business Analytics\",\"description\":\"
Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"586071c\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"start\",\"image_align_v\":\"start\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_color\":\"var(--e-global-color-3774f73)\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-3774f73)\",\"subtitle_color\":\"var(--e-global-color-3774f73)\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_color\":\"var(--e-global-color-e0f18b6)\",\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_flex_align_self\":\"flex-start\",\"_offset_x\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6674e15\"},{\"_id\":\"da3541c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d25886d\"},{\"_id\":\"27c5a05\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_color\":\"#161B2D\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_background_color_b\":\"#161B2D00\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"image_height_mobile\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"_element_width\":\"inherit\",\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"1cd041b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Data Analysis\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4bd417e\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Take advantage of the experiential-learning opportunities built into many programs. You can work in\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"labs on and off campus or even spend semesters overseas. One Construction employs over 3 000\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"employees, the majority of whom are based on project sites.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"5274280\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"We embrace holistic development and support for employees with the aim of being a first-choice\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"employer within our sectors. Through a unique combination of engineering, construction and design\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"disciplines and expertise.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"04440a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#0000001A\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"70f2627\"},{\"_id\":\"4374c07\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d11281c\"},{\"_id\":\"1af3491\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile_extra\":\"\",\"gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d919f4d\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Plan Benefits\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"2f9c0fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"d65f204\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b78c57d\"},{\"text\":\"Immediate settlement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"23830fa\"},{\"text\":\"Zero broker commission\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"68315a5\"},{\"text\":\"Guaranteed by the services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"242498d\"},{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ab1361c\"},{\"text\":\"Infrastructure solutions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1416173\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ff9fa0\"},{\"_id\":\"b5d63be\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b38d489\"},{\"_id\":\"a0da9b4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align_mobile_extra\":\"\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"948554d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"489f2c1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b78c57d\"},{\"text\":\"Immediate settlement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"23830fa\"},{\"text\":\"Zero broker commission\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"68315a5\"},{\"text\":\"Guaranteed by the services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"242498d\"},{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ab1361c\"},{\"text\":\"Infrastructure solutions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1416173\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ff9fa0\"},{\"_id\":\"b5d63be\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b38d489\"},{\"_id\":\"a0da9b4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align_mobile_extra\":\"\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6612797\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#0000001A\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"70f2627\"},{\"_id\":\"4374c07\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d11281c\"},{\"_id\":\"1af3491\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile_extra\":\"\",\"gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60a7549\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Questions? You\\u2019re covered.\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"c62b978\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Guaranteed by the trusted aviation services\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"06952c9\"},{\"title\":\"Professional end to end encryption for companies\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"2bee43d\"},{\"title\":\"Zero broker commission for data research and analysis\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"af5f361\"}],\"title_tag\":\"h5\",\"enable_trigger_icon\":\"\",\"item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"trigger_typography_typography\":\"custom\",\"trigger_padding\":{\"unit\":\"em\",\"top\":\"1.1\",\"right\":\"1.5\",\"bottom\":\"1.1\",\"left\":\"1.5\",\"isLinked\":false},\"trigger_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"trigger_border_color\":\"#E8792F4C\",\"trigger_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"trigger_color_hover\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_hover_background\":\"color\",\"trigger_background_hover_color\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_active_background\":\"color\",\"trigger_background_active_color\":\"var(--e-global-color-primary)\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_color\":\"#5F6973\",\"content_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"117e394\"},{\"_id\":\"aec0c81\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4b5bb1e\"},{\"_id\":\"8e0f48d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_color\":\"var(--e-global-color-fb85fbd)\",\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_mobile_extra\":\"\",\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_hover_mobile_extra\":\"\",\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_active_mobile_extra\":\"\",\"item_background_active_color_mobile_extra\":\"\",\"item_background_active_position_mobile_extra\":\"\",\"item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_repeat_mobile_extra\":\"\",\"item_background_active_size_mobile_extra\":\"\",\"item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_color_mobile_extra\":\"\",\"trigger_background_color_mobile_extra\":\"\",\"trigger_background_position_mobile_extra\":\"\",\"trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_mobile_extra\":\"\",\"trigger_background_size_mobile_extra\":\"\",\"trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_hover_mobile_extra\":\"\",\"trigger_background_hover_color_mobile_extra\":\"\",\"trigger_background_hover_position_mobile_extra\":\"\",\"trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_mobile_extra\":\"\",\"trigger_background_hover_size_mobile_extra\":\"\",\"trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_border\":\"solid\",\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_color\":\"var(--e-global-color-fb85fbd)\",\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_active_mobile_extra\":\"\",\"trigger_background_active_color_mobile_extra\":\"\",\"trigger_background_active_position_mobile_extra\":\"\",\"trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_mobile_extra\":\"\",\"trigger_background_active_size_mobile_extra\":\"\",\"trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_border\":\"solid\",\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_color\":\"var(--e-global-color-fae38d5)\",\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"trigger_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_mobile_extra\":\"\",\"trigger_icon_background_color_mobile_extra\":\"\",\"trigger_icon_background_position_mobile_extra\":\"\",\"trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_repeat_mobile_extra\":\"\",\"trigger_icon_background_size_mobile_extra\":\"\",\"trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_hover_mobile_extra\":\"\",\"trigger_icon_background_hover_color_mobile_extra\":\"\",\"trigger_icon_background_hover_position_mobile_extra\":\"\",\"trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"trigger_icon_background_hover_size_mobile_extra\":\"\",\"trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_active_mobile_extra\":\"\",\"trigger_icon_background_active_color_mobile_extra\":\"\",\"trigger_icon_background_active_position_mobile_extra\":\"\",\"trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_repeat_mobile_extra\":\"\",\"trigger_icon_background_active_size_mobile_extra\":\"\",\"trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_color_mobile_extra\":\"\",\"content_background_color_mobile_extra\":\"\",\"content_background_position_mobile_extra\":\"\",\"content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_repeat_mobile_extra\":\"\",\"content_background_size_mobile_extra\":\"\",\"content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_mobile_extra\":\"\",\"lqd_sticky_item_background_color_mobile_extra\":\"\",\"lqd_sticky_item_background_position_mobile_extra\":\"\",\"lqd_sticky_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_size_mobile_extra\":\"\",\"lqd_sticky_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_hover_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_active_mobile_extra\":\"\",\"lqd_sticky_item_background_active_color_mobile_extra\":\"\",\"lqd_sticky_item_background_active_position_mobile_extra\":\"\",\"lqd_sticky_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_active_size_mobile_extra\":\"\",\"lqd_sticky_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_color_mobile_extra\":\"\",\"lqd_sticky_content_background_color_mobile_extra\":\"\",\"lqd_sticky_content_background_position_mobile_extra\":\"\",\"lqd_sticky_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_background_size_mobile_extra\":\"\",\"lqd_sticky_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_color_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_hover_mobile_extra\":\"\",\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_active_mobile_extra\":\"\",\"dark_item_background_active_color_mobile_extra\":\"\",\"dark_item_background_active_position_mobile_extra\":\"\",\"dark_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_repeat_mobile_extra\":\"\",\"dark_item_background_active_size_mobile_extra\":\"\",\"dark_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_mobile_extra\":\"\",\"dark_trigger_background_color_mobile_extra\":\"\",\"dark_trigger_background_position_mobile_extra\":\"\",\"dark_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_mobile_extra\":\"\",\"dark_trigger_background_size_mobile_extra\":\"\",\"dark_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_hover_mobile_extra\":\"\",\"dark_trigger_background_hover_color_mobile_extra\":\"\",\"dark_trigger_background_hover_position_mobile_extra\":\"\",\"dark_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_background_hover_size_mobile_extra\":\"\",\"dark_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_active_mobile_extra\":\"\",\"dark_trigger_background_active_color_mobile_extra\":\"\",\"dark_trigger_background_active_position_mobile_extra\":\"\",\"dark_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_background_active_size_mobile_extra\":\"\",\"dark_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_mobile_extra\":\"\",\"dark_trigger_icon_background_color_mobile_extra\":\"\",\"dark_trigger_icon_background_position_mobile_extra\":\"\",\"dark_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_size_mobile_extra\":\"\",\"dark_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_hover_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_color_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_position_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_size_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_active_mobile_extra\":\"\",\"dark_trigger_icon_background_active_color_mobile_extra\":\"\",\"dark_trigger_icon_background_active_position_mobile_extra\":\"\",\"dark_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_active_size_mobile_extra\":\"\",\"dark_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_color_mobile_extra\":\"\",\"dark_content_background_color_mobile_extra\":\"\",\"dark_content_background_position_mobile_extra\":\"\",\"dark_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_repeat_mobile_extra\":\"\",\"dark_content_background_size_mobile_extra\":\"\",\"dark_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(121, 1211, '_thumbnail_id', '1237'),
(122, 1222, '_elementor_edit_mode', 'builder'),
(123, 1222, '_elementor_template_type', 'wp-post'),
(124, 1222, '_elementor_version', '3.18.2'),
(125, 1222, '_wp_page_template', 'default'),
(126, 1222, '_elementor_page_settings', 'a:7:{s:20:\"portfolio_attributes\";s:22:\"Client | Liquid Themes\";s:36:\"lqd_page_title_wrapper_bg_background\";s:5:\"image\";s:31:\"lqd_page_title_wrapper_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:34:\"lqd_page_title_wrapper_bg_position\";s:13:\"center center\";s:36:\"lqd_page_title_wrapper_bg_attachment\";s:5:\"fixed\";s:32:\"lqd_page_title_wrapper_bg_repeat\";s:9:\"no-repeat\";s:30:\"lqd_page_title_wrapper_bg_size\";s:5:\"cover\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(127, 1222, '_elementor_data', '[{\"id\":\"155edc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce6b579\"},{\"_id\":\"d5a3991\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2ec3ce6\"},{\"_id\":\"2ebd75a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"aed2861\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5bf22b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d49adb7\"},{\"_id\":\"675d47e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1ae6515\"},{\"_id\":\"1cb0e0c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F7F8FA\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"5361863\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get a Free Quote\",\"_id\":\"ff7284f\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h5\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_weight\":\"700\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"69224e4\"},{\"_id\":\"248b296\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a96cfa\"},{\"_id\":\"9ed33e4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"b628500\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Date:\",\"title_tag\":\"h5\",\"subtitle\":\"Sep 2021\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"da98e87\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Client:\",\"title_tag\":\"h5\",\"subtitle\":\"Apple Inc.\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"6e5ef40\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Location:\",\"title_tag\":\"h5\",\"subtitle\":\"London, UK\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"c59a2ee\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Task:\",\"title_tag\":\"h5\",\"subtitle\":\"Data Analysis\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"a649805\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"title_inline\":\"yes\",\"subtitle_inline\":\"yes\",\"text_align\":\"start\",\"image_placement\":\"end\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"title\"],\"separate_content_placement\":\"start\",\"justify_content\":\"space-between\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-d287e2c)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d816928\"},{\"_id\":\"cb167f6\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cf71f7b\"},{\"_id\":\"f96a01f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"2deb150\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#F7F8FA\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"20\",\"bottom\":\"35\",\"left\":\"20\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d49adb7\"},{\"_id\":\"675d47e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1ae6515\"},{\"_id\":\"1cb0e0c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"9d4428e\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get a Free Quote\",\"_id\":\"ff7284f\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h5\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_weight\":\"700\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"69224e4\"},{\"_id\":\"248b296\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a96cfa\"},{\"_id\":\"9ed33e4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"a800b83\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1267***1702649043996\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6bd7540\"},{\"_id\":\"21b2e8c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"aadb57a\"},{\"_id\":\"d8f7f2a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":true},{\"id\":\"b98bf31\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#70707026\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6e242bc\"},{\"_id\":\"315473b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"5e439a0\"},{\"_id\":\"749a123\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"d76aa98\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":\"akar-icons ai-phone\",\"library\":\"akar-icons\"},\"title\":\"Toll Free Call Center:\",\"title_tag\":\"h4\",\"subtitle\":\"+48 4348 80 32\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"f031299\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"icon_inline\":\"yes\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"icon\"],\"separate_content_placement\":\"start\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"55\",\"height\":\"55\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[{\"_id\":\"20b8679\",\"background\":\"color\",\"color\":\"var(--e-global-color-d5f65f9)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"icon_border_radius\":{\"unit\":\"em\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"icon_border_radius_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_background_hover_liquid_background_items\":[{\"_id\":\"7e9b113\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"title_color\":\"#0A0A0A\",\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"48e8307\"},{\"_id\":\"d70b8cd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"63036df\"},{\"_id\":\"45100fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"\"},\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_effect_hover\":\"scale-up\",\"icon_color_hover\":\"var(--e-global-color-d5f65f9)\",\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"icon_color\":\"var(--e-global-color-primary)\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba9edfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c34e3f5\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Data Analysis\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d6dc1d5\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Take advantage of the experiential-learning opportunities built into many programs. You can work in\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"labs on and off campus or even spend semesters overseas. One Construction employs over 3 000\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"employees, the majority of whom are based on project sites.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"29a42a7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"We embrace holistic development and support for employees with the aim of being a first-choice\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"employer within our sectors. Through a unique combination of engineering, construction and design\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"disciplines and expertise.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"edbcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8ee88d7\"},{\"_id\":\"cb006a9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"55ffdc2\"},{\"_id\":\"86ace83\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"b3aa7a8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"flex_justify_content_tablet\":\"space-between\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#EBEBEB\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"be560c1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Plan Benefits\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"3719547\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Through a unique combination of engineering,\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"construction and design disciplines and expertise,\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"Concor delivers world class infrastructure solutions.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d008863\",\"text\":\"We embrace holistic development and support for employees.\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"2072ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"button_expand\":\"yes\",\"justify_btn_content\":\"center\",\"color_normal\":\"var(--e-global-color-d5f65f9)\",\"background_normal_liquid_background_items\":[{\"_id\":\"3557b65\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"border_radius_normal\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_hover_liquid_background_items\":[{\"_id\":\"dc82928\",\"background\":\"color\",\"color\":\"var(--e-global-color-47490ef)\"}],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"32bfc9d\"},{\"_id\":\"7deb9d7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1d1a1aa\"},{\"_id\":\"54ec966\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"align_mobile_extra\":\"\",\"local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_expand_mobile_extra\":\"\",\"justify_btn_content_mobile_extra\":\"\",\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"color_hover\":\"var(--e-global-color-d5f65f9)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"31bb9e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EBEBEB\",\"flex_justify_content\":\"center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"4ba7fab\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b78c57d\"},{\"text\":\"Immediate settlement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"23830fa\"},{\"text\":\"Zero broker commission\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"68315a5\"},{\"text\":\"Guaranteed by the services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"242498d\"},{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ab1361c\"},{\"text\":\"Infrastructure solutions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1416173\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ff9fa0\"},{\"_id\":\"b5d63be\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b38d489\"},{\"_id\":\"a0da9b4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align_mobile_extra\":\"\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e87b24\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Questions? You\\u2019re covered.\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"366b924\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Guaranteed by the trusted aviation services\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"06952c9\"},{\"title\":\"Professional end to end encryption for companies\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"2bee43d\"},{\"title\":\"Zero broker commission for data research and analysis\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"af5f361\"}],\"title_tag\":\"h5\",\"enable_trigger_icon\":\"\",\"item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"trigger_typography_typography\":\"custom\",\"trigger_padding\":{\"unit\":\"em\",\"top\":\"1.1\",\"right\":\"1.5\",\"bottom\":\"1.1\",\"left\":\"1.5\",\"isLinked\":false},\"trigger_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"trigger_border_color\":\"#E8792F4C\",\"trigger_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"trigger_color_hover\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_hover_background\":\"color\",\"trigger_background_hover_color\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_active_background\":\"color\",\"trigger_background_active_color\":\"var(--e-global-color-primary)\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_color\":\"#5F6973\",\"content_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"117e394\"},{\"_id\":\"aec0c81\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4b5bb1e\"},{\"_id\":\"8e0f48d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_color\":\"var(--e-global-color-fb85fbd)\",\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_mobile_extra\":\"\",\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_hover_mobile_extra\":\"\",\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_active_mobile_extra\":\"\",\"item_background_active_color_mobile_extra\":\"\",\"item_background_active_position_mobile_extra\":\"\",\"item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_repeat_mobile_extra\":\"\",\"item_background_active_size_mobile_extra\":\"\",\"item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_color_mobile_extra\":\"\",\"trigger_background_color_mobile_extra\":\"\",\"trigger_background_position_mobile_extra\":\"\",\"trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_mobile_extra\":\"\",\"trigger_background_size_mobile_extra\":\"\",\"trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_hover_mobile_extra\":\"\",\"trigger_background_hover_color_mobile_extra\":\"\",\"trigger_background_hover_position_mobile_extra\":\"\",\"trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_mobile_extra\":\"\",\"trigger_background_hover_size_mobile_extra\":\"\",\"trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_border\":\"solid\",\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_color\":\"var(--e-global-color-fb85fbd)\",\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_active_mobile_extra\":\"\",\"trigger_background_active_color_mobile_extra\":\"\",\"trigger_background_active_position_mobile_extra\":\"\",\"trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_mobile_extra\":\"\",\"trigger_background_active_size_mobile_extra\":\"\",\"trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_border\":\"solid\",\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_color\":\"var(--e-global-color-fae38d5)\",\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"trigger_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_mobile_extra\":\"\",\"trigger_icon_background_color_mobile_extra\":\"\",\"trigger_icon_background_position_mobile_extra\":\"\",\"trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_repeat_mobile_extra\":\"\",\"trigger_icon_background_size_mobile_extra\":\"\",\"trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_hover_mobile_extra\":\"\",\"trigger_icon_background_hover_color_mobile_extra\":\"\",\"trigger_icon_background_hover_position_mobile_extra\":\"\",\"trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"trigger_icon_background_hover_size_mobile_extra\":\"\",\"trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_active_mobile_extra\":\"\",\"trigger_icon_background_active_color_mobile_extra\":\"\",\"trigger_icon_background_active_position_mobile_extra\":\"\",\"trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_repeat_mobile_extra\":\"\",\"trigger_icon_background_active_size_mobile_extra\":\"\",\"trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_color_mobile_extra\":\"\",\"content_background_color_mobile_extra\":\"\",\"content_background_position_mobile_extra\":\"\",\"content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_repeat_mobile_extra\":\"\",\"content_background_size_mobile_extra\":\"\",\"content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_mobile_extra\":\"\",\"lqd_sticky_item_background_color_mobile_extra\":\"\",\"lqd_sticky_item_background_position_mobile_extra\":\"\",\"lqd_sticky_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_size_mobile_extra\":\"\",\"lqd_sticky_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_hover_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_active_mobile_extra\":\"\",\"lqd_sticky_item_background_active_color_mobile_extra\":\"\",\"lqd_sticky_item_background_active_position_mobile_extra\":\"\",\"lqd_sticky_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_active_size_mobile_extra\":\"\",\"lqd_sticky_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_color_mobile_extra\":\"\",\"lqd_sticky_content_background_color_mobile_extra\":\"\",\"lqd_sticky_content_background_position_mobile_extra\":\"\",\"lqd_sticky_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_background_size_mobile_extra\":\"\",\"lqd_sticky_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_color_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_hover_mobile_extra\":\"\",\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_active_mobile_extra\":\"\",\"dark_item_background_active_color_mobile_extra\":\"\",\"dark_item_background_active_position_mobile_extra\":\"\",\"dark_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_repeat_mobile_extra\":\"\",\"dark_item_background_active_size_mobile_extra\":\"\",\"dark_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_mobile_extra\":\"\",\"dark_trigger_background_color_mobile_extra\":\"\",\"dark_trigger_background_position_mobile_extra\":\"\",\"dark_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_mobile_extra\":\"\",\"dark_trigger_background_size_mobile_extra\":\"\",\"dark_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_hover_mobile_extra\":\"\",\"dark_trigger_background_hover_color_mobile_extra\":\"\",\"dark_trigger_background_hover_position_mobile_extra\":\"\",\"dark_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_background_hover_size_mobile_extra\":\"\",\"dark_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_active_mobile_extra\":\"\",\"dark_trigger_background_active_color_mobile_extra\":\"\",\"dark_trigger_background_active_position_mobile_extra\":\"\",\"dark_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_background_active_size_mobile_extra\":\"\",\"dark_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_mobile_extra\":\"\",\"dark_trigger_icon_background_color_mobile_extra\":\"\",\"dark_trigger_icon_background_position_mobile_extra\":\"\",\"dark_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_size_mobile_extra\":\"\",\"dark_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_hover_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_color_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_position_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_size_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_active_mobile_extra\":\"\",\"dark_trigger_icon_background_active_color_mobile_extra\":\"\",\"dark_trigger_icon_background_active_position_mobile_extra\":\"\",\"dark_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_active_size_mobile_extra\":\"\",\"dark_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_color_mobile_extra\":\"\",\"dark_content_background_color_mobile_extra\":\"\",\"dark_content_background_position_mobile_extra\":\"\",\"dark_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_repeat_mobile_extra\":\"\",\"dark_content_background_size_mobile_extra\":\"\",\"dark_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(129, 1222, '_thumbnail_id', '1235'),
(130, 1230, '_wp_page_template', 'default'),
(131, 1230, '_elementor_edit_mode', 'builder'),
(132, 1230, '_elementor_template_type', 'wp-post'),
(133, 1230, '_elementor_version', '3.18.2'),
(134, 1230, '_elementor_page_settings', 'a:7:{s:20:\"portfolio_attributes\";s:22:\"Client | Liquid Themes\";s:36:\"lqd_page_title_wrapper_bg_background\";s:5:\"image\";s:31:\"lqd_page_title_wrapper_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:34:\"lqd_page_title_wrapper_bg_position\";s:13:\"center center\";s:36:\"lqd_page_title_wrapper_bg_attachment\";s:5:\"fixed\";s:32:\"lqd_page_title_wrapper_bg_repeat\";s:9:\"no-repeat\";s:30:\"lqd_page_title_wrapper_bg_size\";s:5:\"cover\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(135, 1230, '_elementor_data', '[{\"id\":\"a9ef092\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce6b579\"},{\"_id\":\"d5a3991\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2ec3ce6\"},{\"_id\":\"2ebd75a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"0a118ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"c9a472d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"9029e6b\"},{\"_id\":\"9f7140c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"44befc9\"},{\"_id\":\"812288b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"a5f0ccc\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"portfolio\",\"custom_menu\":[{\"label\":\"Home\",\"link\":{\"url\":\"#home\"},\"_id\":\"38d3a3e\"},{\"label\":\"About\",\"link\":{\"url\":\"#about\"},\"_id\":\"fa1a31a\"},{\"label\":\"Services\",\"link\":{\"url\":\"#services\"},\"_id\":\"85230c8\"}],\"individual_item_styles\":[],\"trigger_text\":\"\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64806\"},{\"_id\":\"6a49b34\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"66d0a48\"},{\"_id\":\"0ee03e0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"items_orientation\":\"column\",\"localscroll\":\"yes\",\"mobile_dropdown\":\"yes\",\"ul_top_gap\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"li_top_typography_typography\":\"custom\",\"li_top_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"li_top_typography_font_weight\":\"700\",\"li_top_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1.6\",\"bottom\":\"1\",\"left\":\"1.6\",\"isLinked\":false},\"li_top_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_background_background\":\"color\",\"li_top_background_color\":\"#F7F8FA\",\"trigger_type\":\"none\",\"__globals__\":{\"li_top_typography_typography\":\"\"},\"li_top_color_hover\":\"var(--e-global-color-d5f65f9)\",\"li_top_background_hover_background\":\"color\",\"li_top_background_hover_color\":\"var(--e-global-color-primary)\",\"li_top_color_active\":\"var(--e-global-color-d5f65f9)\",\"li_top_background_active_background\":\"color\",\"li_top_background_active_color\":\"var(--e-global-color-primary)\",\"items_orientation_mobile_extra\":\"\",\"items_orientation_li_width_mobile_extra\":\"\",\"items_align_mobile_extra\":\"\",\"items_h_align_mobile_extra\":\"\",\"items_wrap_mobile_extra\":\"\",\"localscroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_breakpoint_mobile_extra\":\"\",\"mobile_dropdown_breakpoint_mobile_extra_position\":\"yes\",\"submenu_items_orientation_mobile_extra\":\"\",\"submenu_dropdown_pos_mobile_extra\":\"\",\"submenu_items_align_mobile_extra\":\"\",\"submenu_items_wrap_mobile_extra\":\"\",\"submenu_items_h_align_mobile_extra\":\"\",\"decorators_top_active_orientation_h_mobile_extra\":\"\",\"decorators_top_active_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_orientation_v_mobile_extra\":\"\",\"decorators_top_active_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_top_active_offset_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_position_h_mobile_extra\":\"\",\"ul_top_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_position_v_mobile_extra\":\"\",\"ul_top_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_background_color_mobile_extra\":\"\",\"ul_top_background_position_mobile_extra\":\"\",\"ul_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_repeat_mobile_extra\":\"\",\"ul_top_background_size_mobile_extra\":\"\",\"ul_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_background_hover_color_mobile_extra\":\"\",\"ul_top_background_hover_position_mobile_extra\":\"\",\"ul_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_background_hover_repeat_mobile_extra\":\"\",\"ul_top_background_hover_size_mobile_extra\":\"\",\"ul_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ul_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ul_top_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_color_mobile_extra\":\"\",\"li_top_background_color_mobile_extra\":\"\",\"li_top_background_position_mobile_extra\":\"\",\"li_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_repeat_mobile_extra\":\"\",\"li_top_background_size_mobile_extra\":\"\",\"li_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_color_hover_mobile_extra\":\"\",\"li_top_background_hover_color_mobile_extra\":\"\",\"li_top_background_hover_position_mobile_extra\":\"\",\"li_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_hover_repeat_mobile_extra\":\"\",\"li_top_background_hover_size_mobile_extra\":\"\",\"li_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_color_active_mobile_extra\":\"\",\"li_top_background_active_color_mobile_extra\":\"\",\"li_top_background_active_position_mobile_extra\":\"\",\"li_top_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_background_active_repeat_mobile_extra\":\"\",\"li_top_background_active_size_mobile_extra\":\"\",\"li_top_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"li_top_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"li_top_opacity_active_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_position_h_mobile_extra\":\"\",\"dropdown_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_position_v_mobile_extra\":\"\",\"dropdown_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_background_color_mobile_extra\":\"\",\"dropdown_background_position_mobile_extra\":\"\",\"dropdown_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_background_repeat_mobile_extra\":\"\",\"dropdown_background_size_mobile_extra\":\"\",\"dropdown_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_color_mobile_extra\":\"\",\"dropdown_link_background_color_mobile_extra\":\"\",\"dropdown_link_background_position_mobile_extra\":\"\",\"dropdown_link_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_repeat_mobile_extra\":\"\",\"dropdown_link_background_size_mobile_extra\":\"\",\"dropdown_link_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_color_hover_mobile_extra\":\"\",\"dropdown_link_background_hover_color_mobile_extra\":\"\",\"dropdown_link_background_hover_position_mobile_extra\":\"\",\"dropdown_link_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_background_hover_repeat_mobile_extra\":\"\",\"dropdown_link_background_hover_size_mobile_extra\":\"\",\"dropdown_link_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dropdown_link_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dropdown_link_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_background_color_mobile_extra\":\"\",\"icon_background_position_mobile_extra\":\"\",\"icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_repeat_mobile_extra\":\"\",\"icon_background_size_mobile_extra\":\"\",\"icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_background_hover_color_mobile_extra\":\"\",\"icon_background_hover_position_mobile_extra\":\"\",\"icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_hover_repeat_mobile_extra\":\"\",\"icon_background_hover_size_mobile_extra\":\"\",\"icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_active_mobile_extra\":\"\",\"icon_background_active_color_mobile_extra\":\"\",\"icon_background_active_position_mobile_extra\":\"\",\"icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_background_active_repeat_mobile_extra\":\"\",\"icon_background_active_size_mobile_extra\":\"\",\"icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_color_mobile_extra\":\"\",\"badge_background_color_mobile_extra\":\"\",\"badge_background_position_mobile_extra\":\"\",\"badge_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_repeat_mobile_extra\":\"\",\"badge_background_size_mobile_extra\":\"\",\"badge_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_color_hover_mobile_extra\":\"\",\"badge_background_hover_color_mobile_extra\":\"\",\"badge_background_hover_position_mobile_extra\":\"\",\"badge_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_hover_repeat_mobile_extra\":\"\",\"badge_background_hover_size_mobile_extra\":\"\",\"badge_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_color_active_mobile_extra\":\"\",\"badge_background_active_color_mobile_extra\":\"\",\"badge_background_active_position_mobile_extra\":\"\",\"badge_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_background_active_repeat_mobile_extra\":\"\",\"badge_background_active_size_mobile_extra\":\"\",\"badge_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"badge_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"badge_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"decorators_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_background_color_mobile_extra\":\"\",\"decorators_background_position_mobile_extra\":\"\",\"decorators_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_background_repeat_mobile_extra\":\"\",\"decorators_background_size_mobile_extra\":\"\",\"decorators_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"decorators_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"decorators_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ul_top_background_color_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_position_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_repeat_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_size_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ul_top_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_ul_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_ul_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_li_top_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_position_mobile_extra\":\"\",\"lqd_sticky_li_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_repeat_mobile_extra\":\"\",\"lqd_sticky_li_top_background_size_mobile_extra\":\"\",\"lqd_sticky_li_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_li_top_color_hover_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_li_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_li_top_color_active_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_color_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_position_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_size_mobile_extra\":\"\",\"lqd_sticky_li_top_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_li_top_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_dropdown_background_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_position_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_background_repeat_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_size_mobile_extra\":\"\",\"lqd_sticky_dropdown_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_dropdown_link_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_position_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_repeat_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_size_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_dropdown_link_color_hover_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_dropdown_link_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_dropdown_link_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_position_mobile_extra\":\"\",\"lqd_sticky_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_repeat_mobile_extra\":\"\",\"lqd_sticky_icon_background_size_mobile_extra\":\"\",\"lqd_sticky_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_active_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_color_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_position_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_size_mobile_extra\":\"\",\"lqd_sticky_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_badge_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_position_mobile_extra\":\"\",\"lqd_sticky_badge_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_repeat_mobile_extra\":\"\",\"lqd_sticky_badge_background_size_mobile_extra\":\"\",\"lqd_sticky_badge_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_badge_color_hover_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_badge_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_badge_color_active_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_color_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_position_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_size_mobile_extra\":\"\",\"lqd_sticky_badge_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_badge_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_decorators_background_color_mobile_extra\":\"\",\"lqd_sticky_decorators_background_position_mobile_extra\":\"\",\"lqd_sticky_decorators_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_decorators_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_decorators_background_repeat_mobile_extra\":\"\",\"lqd_sticky_decorators_background_size_mobile_extra\":\"\",\"lqd_sticky_decorators_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_decorators_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ul_top_background_color_mobile_extra\":\"\",\"dark_ul_top_background_position_mobile_extra\":\"\",\"dark_ul_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_repeat_mobile_extra\":\"\",\"dark_ul_top_background_size_mobile_extra\":\"\",\"dark_ul_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ul_top_background_hover_color_mobile_extra\":\"\",\"dark_ul_top_background_hover_position_mobile_extra\":\"\",\"dark_ul_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_background_hover_repeat_mobile_extra\":\"\",\"dark_ul_top_background_hover_size_mobile_extra\":\"\",\"dark_ul_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_ul_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_li_top_color_mobile_extra\":\"\",\"dark_li_top_background_color_mobile_extra\":\"\",\"dark_li_top_background_position_mobile_extra\":\"\",\"dark_li_top_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_repeat_mobile_extra\":\"\",\"dark_li_top_background_size_mobile_extra\":\"\",\"dark_li_top_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_li_top_color_hover_mobile_extra\":\"\",\"dark_li_top_background_hover_color_mobile_extra\":\"\",\"dark_li_top_background_hover_position_mobile_extra\":\"\",\"dark_li_top_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_hover_repeat_mobile_extra\":\"\",\"dark_li_top_background_hover_size_mobile_extra\":\"\",\"dark_li_top_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_li_top_color_active_mobile_extra\":\"\",\"dark_li_top_background_active_color_mobile_extra\":\"\",\"dark_li_top_background_active_position_mobile_extra\":\"\",\"dark_li_top_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_background_active_repeat_mobile_extra\":\"\",\"dark_li_top_background_active_size_mobile_extra\":\"\",\"dark_li_top_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_li_top_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_dropdown_background_color_mobile_extra\":\"\",\"dark_dropdown_background_position_mobile_extra\":\"\",\"dark_dropdown_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_background_repeat_mobile_extra\":\"\",\"dark_dropdown_background_size_mobile_extra\":\"\",\"dark_dropdown_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_dropdown_link_color_mobile_extra\":\"\",\"dark_dropdown_link_background_color_mobile_extra\":\"\",\"dark_dropdown_link_background_position_mobile_extra\":\"\",\"dark_dropdown_link_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_repeat_mobile_extra\":\"\",\"dark_dropdown_link_background_size_mobile_extra\":\"\",\"dark_dropdown_link_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_dropdown_link_color_hover_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_color_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_position_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_background_hover_repeat_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_size_mobile_extra\":\"\",\"dark_dropdown_link_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_dropdown_link_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_background_color_mobile_extra\":\"\",\"dark_icon_background_position_mobile_extra\":\"\",\"dark_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_repeat_mobile_extra\":\"\",\"dark_icon_background_size_mobile_extra\":\"\",\"dark_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_background_hover_color_mobile_extra\":\"\",\"dark_icon_background_hover_position_mobile_extra\":\"\",\"dark_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_hover_repeat_mobile_extra\":\"\",\"dark_icon_background_hover_size_mobile_extra\":\"\",\"dark_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_active_mobile_extra\":\"\",\"dark_icon_background_active_color_mobile_extra\":\"\",\"dark_icon_background_active_position_mobile_extra\":\"\",\"dark_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_background_active_repeat_mobile_extra\":\"\",\"dark_icon_background_active_size_mobile_extra\":\"\",\"dark_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_badge_color_mobile_extra\":\"\",\"dark_badge_background_color_mobile_extra\":\"\",\"dark_badge_background_position_mobile_extra\":\"\",\"dark_badge_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_repeat_mobile_extra\":\"\",\"dark_badge_background_size_mobile_extra\":\"\",\"dark_badge_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_badge_color_hover_mobile_extra\":\"\",\"dark_badge_background_hover_color_mobile_extra\":\"\",\"dark_badge_background_hover_position_mobile_extra\":\"\",\"dark_badge_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_hover_repeat_mobile_extra\":\"\",\"dark_badge_background_hover_size_mobile_extra\":\"\",\"dark_badge_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_badge_color_active_mobile_extra\":\"\",\"dark_badge_background_active_color_mobile_extra\":\"\",\"dark_badge_background_active_position_mobile_extra\":\"\",\"dark_badge_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_background_active_repeat_mobile_extra\":\"\",\"dark_badge_background_active_size_mobile_extra\":\"\",\"dark_badge_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_badge_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_decorators_background_color_mobile_extra\":\"\",\"dark_decorators_background_position_mobile_extra\":\"\",\"dark_decorators_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_decorators_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_decorators_background_repeat_mobile_extra\":\"\",\"dark_decorators_background_size_mobile_extra\":\"\",\"dark_decorators_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_decorators_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mobile_dropdown_width_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_orientation_h_mobile_extra\":\"start\",\"mobile_dropdown_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_orientation_v_mobile_extra\":\"top\",\"mobile_dropdown_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_mobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_laptop\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottommobile_extra_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_width_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_extra_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_justify_content_mobile_extra\":\"\",\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_color_mobile_extra\":\"\",\"trigger_background_position_mobile_extra\":\"\",\"trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_mobile_extra\":\"\",\"trigger_background_size_mobile_extra\":\"\",\"trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_hover_color_mobile_extra\":\"\",\"trigger_background_hover_position_mobile_extra\":\"\",\"trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_mobile_extra\":\"\",\"trigger_background_hover_size_mobile_extra\":\"\",\"trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_active_color_mobile_extra\":\"\",\"trigger_background_active_position_mobile_extra\":\"\",\"trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_mobile_extra\":\"\",\"trigger_background_active_size_mobile_extra\":\"\",\"trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_first_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_first_mobile_extra\":\"\",\"bars_width_second_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_second_mobile_extra\":\"\",\"bars_width_third_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_third_mobile_extra\":\"\",\"bars_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_color_mobile_extra\":\"\",\"bars_background_position_mobile_extra\":\"\",\"bars_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_repeat_mobile_extra\":\"\",\"bars_background_size_mobile_extra\":\"\",\"bars_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_color_mobile_extra\":\"\",\"bars_background_hover_position_mobile_extra\":\"\",\"bars_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_repeat_mobile_extra\":\"\",\"bars_background_hover_size_mobile_extra\":\"\",\"bars_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_color_mobile_extra\":\"\",\"bars_background_active_position_mobile_extra\":\"\",\"bars_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_repeat_mobile_extra\":\"\",\"bars_background_active_size_mobile_extra\":\"\",\"bars_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"bars_shape_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_color_mobile_extra\":\"\",\"bars_shape_background_position_mobile_extra\":\"\",\"bars_shape_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_repeat_mobile_extra\":\"\",\"bars_shape_background_size_mobile_extra\":\"\",\"bars_shape_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_hover_color_mobile_extra\":\"\",\"bars_shape_background_hover_position_mobile_extra\":\"\",\"bars_shape_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_hover_repeat_mobile_extra\":\"\",\"bars_shape_background_hover_size_mobile_extra\":\"\",\"bars_shape_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_active_color_mobile_extra\":\"\",\"bars_shape_background_active_position_mobile_extra\":\"\",\"bars_shape_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_active_repeat_mobile_extra\":\"\",\"bars_shape_background_active_size_mobile_extra\":\"\",\"bars_shape_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_background_color_mobile_extra\":\"\",\"lqd_sticky_bars_background_position_mobile_extra\":\"\",\"lqd_sticky_bars_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_background_size_mobile_extra\":\"\",\"lqd_sticky_bars_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_bars_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_color_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_position_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_size_mobile_extra\":\"\",\"lqd_sticky_bars_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_color_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_position_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_size_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_background_active_color_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_position_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_size_mobile_extra\":\"\",\"lqd_sticky_bars_shape_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_color_mobile_extra\":\"\",\"dark_trigger_background_position_mobile_extra\":\"\",\"dark_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_mobile_extra\":\"\",\"dark_trigger_background_size_mobile_extra\":\"\",\"dark_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_hover_color_mobile_extra\":\"\",\"dark_trigger_background_hover_position_mobile_extra\":\"\",\"dark_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_background_hover_size_mobile_extra\":\"\",\"dark_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_active_color_mobile_extra\":\"\",\"dark_trigger_background_active_position_mobile_extra\":\"\",\"dark_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_background_active_size_mobile_extra\":\"\",\"dark_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_background_color_mobile_extra\":\"\",\"dark_bars_background_position_mobile_extra\":\"\",\"dark_bars_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_repeat_mobile_extra\":\"\",\"dark_bars_background_size_mobile_extra\":\"\",\"dark_bars_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_color_mobile_extra\":\"\",\"dark_bars_background_hover_position_mobile_extra\":\"\",\"dark_bars_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_repeat_mobile_extra\":\"\",\"dark_bars_background_hover_size_mobile_extra\":\"\",\"dark_bars_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_color_mobile_extra\":\"\",\"dark_bars_background_active_position_mobile_extra\":\"\",\"dark_bars_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_repeat_mobile_extra\":\"\",\"dark_bars_background_active_size_mobile_extra\":\"\",\"dark_bars_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_color_mobile_extra\":\"\",\"dark_bars_shape_background_position_mobile_extra\":\"\",\"dark_bars_shape_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_repeat_mobile_extra\":\"\",\"dark_bars_shape_background_size_mobile_extra\":\"\",\"dark_bars_shape_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_background_hover_color_mobile_extra\":\"\",\"dark_bars_shape_background_hover_position_mobile_extra\":\"\",\"dark_bars_shape_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_hover_repeat_mobile_extra\":\"\",\"dark_bars_shape_background_hover_size_mobile_extra\":\"\",\"dark_bars_shape_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_background_active_color_mobile_extra\":\"\",\"dark_bars_shape_background_active_position_mobile_extra\":\"\",\"dark_bars_shape_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_active_repeat_mobile_extra\":\"\",\"dark_bars_shape_background_active_size_mobile_extra\":\"\",\"dark_bars_shape_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"li_top_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-menu\"}],\"isInner\":true},{\"id\":\"c476de5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#F7F8FA\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"20\",\"bottom\":\"35\",\"left\":\"20\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d49adb7\"},{\"_id\":\"675d47e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1ae6515\"},{\"_id\":\"1cb0e0c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"4e48468\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get a Free Quote\",\"_id\":\"ff7284f\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h5\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_weight\":\"700\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"69224e4\"},{\"_id\":\"248b296\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a96cfa\"},{\"_id\":\"9ed33e4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"bf94e26\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1267***1702648786553\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6bd7540\"},{\"_id\":\"21b2e8c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"aadb57a\"},{\"_id\":\"d8f7f2a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":true},{\"id\":\"e99e8e3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#70707026\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6e242bc\"},{\"_id\":\"315473b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"5e439a0\"},{\"_id\":\"749a123\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"44d6622\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":\"akar-icons ai-phone\",\"library\":\"akar-icons\"},\"title\":\"Toll Free Call Center:\",\"title_tag\":\"h4\",\"subtitle\":\"+48 4348 80 32\",\"subtitle_tag\":\"h5\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"f031299\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"icon_inline\":\"yes\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"icon\"],\"separate_content_placement\":\"start\",\"align_items\":\"center\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"55\",\"height\":\"55\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[{\"_id\":\"20b8679\",\"background\":\"color\",\"color\":\"var(--e-global-color-d5f65f9)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"icon_border_radius\":{\"unit\":\"em\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"icon_border_radius_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_background_hover_liquid_background_items\":[{\"_id\":\"7e9b113\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"position_mobile_extra\":\"\",\"xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"repeat_mobile_extra\":\"\",\"size_mobile_extra\":\"\",\"bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"title_color\":\"#0A0A0A\",\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"48e8307\"},{\"_id\":\"d70b8cd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"63036df\"},{\"_id\":\"45100fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"\"},\"icon_effect_hover\":\"scale-up\",\"icon_color_hover\":\"var(--e-global-color-d5f65f9)\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"icon_color\":\"var(--e-global-color-primary)\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7edb29a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":70},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c69b999\"},{\"_id\":\"0e3717d\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0828db8\"},{\"_id\":\"d37e35a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_order_mobile_extra\":\"start\",\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\"},\"elements\":[{\"id\":\"becce30\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":1198,\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-ocean-explorer\\/wp-content\\/uploads\\/2023\\/12\\/portfoliodetail1-1.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#181B31\",\"background_overlay_color_b\":\"#181B3100\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1f92d0f\"},{\"_id\":\"e00b7b0\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a6e3bab\"},{\"_id\":\"859f278\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"a711f2c\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"title\":\"Research and Development\",\"subtitle\":\"Business Analytics\",\"description\":\"
Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"586071c\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"start\",\"image_align_v\":\"start\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_color\":\"var(--e-global-color-3774f73)\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"title_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"var(--e-global-color-3774f73)\",\"subtitle_color\":\"var(--e-global-color-3774f73)\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_color\":\"var(--e-global-color-e0f18b6)\",\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_flex_align_self\":\"flex-start\",\"_offset_x\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6674e15\"},{\"_id\":\"da3541c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d25886d\"},{\"_id\":\"27c5a05\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_color\":\"#161B2D\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_background_color_b\":\"#161B2D00\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"image_height_mobile\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"_element_width\":\"inherit\",\"ib_align_mobile_extra\":\"\",\"ib_local_scroll_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_expand_mobile_extra\":\"\",\"ib_justify_btn_content_mobile_extra\":\"\",\"ib_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_text_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_hover_icon_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ib_button_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"ib_button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_button_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_normal_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ib_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_ib_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_align_mobile_extra\":\"\",\"image_align_v_mobile_extra\":\"\",\"image_align_h_mobile_extra\":\"\",\"box_label_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"box_label_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"on_image_button_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"justify_content_mobile_extra\":\"\",\"align_items_mobile_extra\":\"\",\"content_floating_orientation_h_mobile_extra\":\"\",\"content_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_x_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_v_mobile_extra\":\"\",\"content_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_orientation_y_translate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_mobile_extra\":\"\",\"content_floating_background_color_mobile_extra\":\"\",\"content_floating_background_position_mobile_extra\":\"\",\"content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_repeat_mobile_extra\":\"\",\"content_floating_background_size_mobile_extra\":\"\",\"content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_color_hover_mobile_extra\":\"\",\"content_floating_background_hover_color_mobile_extra\":\"\",\"content_floating_background_hover_position_mobile_extra\":\"\",\"content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_background_hover_repeat_mobile_extra\":\"\",\"content_floating_background_hover_size_mobile_extra\":\"\",\"content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_floating_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_block_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_mobile_extra\":\"\",\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover_mobile_extra\":\"\",\"icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_align_mobile_extra\":\"\",\"title_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_mobile_extra\":\"\",\"title_background_color_mobile_extra\":\"\",\"title_background_position_mobile_extra\":\"\",\"title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_repeat_mobile_extra\":\"\",\"title_background_size_mobile_extra\":\"\",\"title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_color_hover_mobile_extra\":\"\",\"title_background_hover_color_mobile_extra\":\"\",\"title_background_hover_position_mobile_extra\":\"\",\"title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_background_hover_repeat_mobile_extra\":\"\",\"title_background_hover_size_mobile_extra\":\"\",\"title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_align_mobile_extra\":\"\",\"subtitle_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_mobile_extra\":\"\",\"subtitle_background_color_mobile_extra\":\"\",\"subtitle_background_position_mobile_extra\":\"\",\"subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_repeat_mobile_extra\":\"\",\"subtitle_background_size_mobile_extra\":\"\",\"subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color_hover_mobile_extra\":\"\",\"subtitle_background_hover_color_mobile_extra\":\"\",\"subtitle_background_hover_position_mobile_extra\":\"\",\"subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_background_hover_repeat_mobile_extra\":\"\",\"subtitle_background_hover_size_mobile_extra\":\"\",\"subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"subtitle_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_mobile_extra\":\"\",\"label_background_color_mobile_extra\":\"\",\"label_background_position_mobile_extra\":\"\",\"label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_repeat_mobile_extra\":\"\",\"label_background_size_mobile_extra\":\"\",\"label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_color_hover_mobile_extra\":\"\",\"label_background_hover_color_mobile_extra\":\"\",\"label_background_hover_position_mobile_extra\":\"\",\"label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_background_hover_repeat_mobile_extra\":\"\",\"label_background_hover_size_mobile_extra\":\"\",\"label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"label_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_align_mobile_extra\":\"\",\"description_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_mobile_extra\":\"\",\"description_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color_hover_mobile_extra\":\"\",\"iconlist_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"iconlist_item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_slider_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_color_mobile_extra\":\"\",\"iconlist_icon_color_mobile_extra\":\"\",\"iconlist_icon_bg_color_mobile_extra\":\"\",\"iconlist_icon_bg_position_mobile_extra\":\"\",\"iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_size_mobile_extra\":\"\",\"iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_color_hover_mobile_extra\":\"\",\"iconlist_icon_color_hover_mobile_extra\":\"\",\"iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"iconlist_iconlist_item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lines_background_color_mobile_extra\":\"\",\"lines_background_position_mobile_extra\":\"\",\"lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_repeat_mobile_extra\":\"\",\"lines_background_size_mobile_extra\":\"\",\"lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_color_mobile_extra\":\"\",\"lines_background_hover_position_mobile_extra\":\"\",\"lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lines_background_hover_repeat_mobile_extra\":\"\",\"lines_background_hover_size_mobile_extra\":\"\",\"lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_floating_color_hover_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_mobile_extra\":\"\",\"lqd_sticky_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_mobile_extra\":\"\",\"lqd_sticky_title_background_color_mobile_extra\":\"\",\"lqd_sticky_title_background_position_mobile_extra\":\"\",\"lqd_sticky_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_size_mobile_extra\":\"\",\"lqd_sticky_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_title_color_hover_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_subtitle_color_hover_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_mobile_extra\":\"\",\"lqd_sticky_label_background_color_mobile_extra\":\"\",\"lqd_sticky_label_background_position_mobile_extra\":\"\",\"lqd_sticky_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_size_mobile_extra\":\"\",\"lqd_sticky_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_label_color_hover_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_description_color_mobile_extra\":\"\",\"lqd_sticky_description_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_lines_background_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_lines_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_mobile_extra\":\"\",\"dark_content_floating_background_color_mobile_extra\":\"\",\"dark_content_floating_background_position_mobile_extra\":\"\",\"dark_content_floating_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_repeat_mobile_extra\":\"\",\"dark_content_floating_background_size_mobile_extra\":\"\",\"dark_content_floating_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_floating_color_hover_mobile_extra\":\"\",\"dark_content_floating_background_hover_color_mobile_extra\":\"\",\"dark_content_floating_background_hover_position_mobile_extra\":\"\",\"dark_content_floating_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_background_hover_repeat_mobile_extra\":\"\",\"dark_content_floating_background_hover_size_mobile_extra\":\"\",\"dark_content_floating_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_floating_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_image_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_mobile_extra\":\"\",\"dark_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_icon_color_hover_mobile_extra\":\"\",\"dark_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_mobile_extra\":\"\",\"dark_title_background_color_mobile_extra\":\"\",\"dark_title_background_position_mobile_extra\":\"\",\"dark_title_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_repeat_mobile_extra\":\"\",\"dark_title_background_size_mobile_extra\":\"\",\"dark_title_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_title_color_hover_mobile_extra\":\"\",\"dark_title_background_hover_color_mobile_extra\":\"\",\"dark_title_background_hover_position_mobile_extra\":\"\",\"dark_title_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_background_hover_repeat_mobile_extra\":\"\",\"dark_title_background_hover_size_mobile_extra\":\"\",\"dark_title_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_title_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_mobile_extra\":\"\",\"dark_subtitle_background_color_mobile_extra\":\"\",\"dark_subtitle_background_position_mobile_extra\":\"\",\"dark_subtitle_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_repeat_mobile_extra\":\"\",\"dark_subtitle_background_size_mobile_extra\":\"\",\"dark_subtitle_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_subtitle_color_hover_mobile_extra\":\"\",\"dark_subtitle_background_hover_color_mobile_extra\":\"\",\"dark_subtitle_background_hover_position_mobile_extra\":\"\",\"dark_subtitle_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_background_hover_repeat_mobile_extra\":\"\",\"dark_subtitle_background_hover_size_mobile_extra\":\"\",\"dark_subtitle_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_subtitle_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_mobile_extra\":\"\",\"dark_label_background_color_mobile_extra\":\"\",\"dark_label_background_position_mobile_extra\":\"\",\"dark_label_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_repeat_mobile_extra\":\"\",\"dark_label_background_size_mobile_extra\":\"\",\"dark_label_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_label_color_hover_mobile_extra\":\"\",\"dark_label_background_hover_color_mobile_extra\":\"\",\"dark_label_background_hover_position_mobile_extra\":\"\",\"dark_label_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_background_hover_repeat_mobile_extra\":\"\",\"dark_label_background_hover_size_mobile_extra\":\"\",\"dark_label_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_label_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_description_color_mobile_extra\":\"\",\"dark_description_color_hover_mobile_extra\":\"\",\"dark_iconlist_color_mobile_extra\":\"\",\"dark_iconlist_icon_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_color_hover_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_color_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_position_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_bg_hover_repeat_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_size_mobile_extra\":\"\",\"dark_iconlist_icon_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_iconlist_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_iconlist_iconlist_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_lines_background_color_mobile_extra\":\"\",\"dark_lines_background_position_mobile_extra\":\"\",\"dark_lines_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_repeat_mobile_extra\":\"\",\"dark_lines_background_size_mobile_extra\":\"\",\"dark_lines_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_color_mobile_extra\":\"\",\"dark_lines_background_hover_position_mobile_extra\":\"\",\"dark_lines_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lines_background_hover_repeat_mobile_extra\":\"\",\"dark_lines_background_hover_size_mobile_extra\":\"\",\"dark_lines_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"469c0eb\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Data Analysis\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"592e6f7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Take advantage of the experiential-learning opportunities built into many programs. You can work in\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"labs on and off campus or even spend semesters overseas. One Construction employs over 3 000\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"employees, the majority of whom are based on project sites.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"cba253a\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"We embrace holistic development and support for employees with the aim of being a first-choice\",\"_id\":\"3e6ddb6\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"5ae1ae9\",\"text\":\"employer within our sectors. Through a unique combination of engineering, construction and design\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"text\":\"disciplines and expertise.\",\"_id\":\"432671e\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a60785\"},{\"_id\":\"90432fe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c447f41\"},{\"_id\":\"395306d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"f773cac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#0000001A\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"70f2627\"},{\"_id\":\"4374c07\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d11281c\"},{\"_id\":\"1af3491\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile_extra\":\"\",\"gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b46a311\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Plan Benefits\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"a0bbcbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"f2afcbc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b78c57d\"},{\"text\":\"Immediate settlement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"23830fa\"},{\"text\":\"Zero broker commission\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"68315a5\"},{\"text\":\"Guaranteed by the services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"242498d\"},{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ab1361c\"},{\"text\":\"Infrastructure solutions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1416173\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ff9fa0\"},{\"_id\":\"b5d63be\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b38d489\"},{\"_id\":\"a0da9b4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align_mobile_extra\":\"\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a3ae75e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"28bdf0b\"},{\"_id\":\"6d0557a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2420a8c\"},{\"_id\":\"ff4d096\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"7bd5de5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b78c57d\"},{\"text\":\"Immediate settlement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"23830fa\"},{\"text\":\"Zero broker commission\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"68315a5\"},{\"text\":\"Guaranteed by the services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"242498d\"},{\"text\":\"Global Data Analysis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ab1361c\"},{\"text\":\"Infrastructure solutions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1416173\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4ff9fa0\"},{\"_id\":\"b5d63be\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b38d489\"},{\"_id\":\"a0da9b4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align_mobile_extra\":\"\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"48af0d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#0000001A\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"70f2627\"},{\"_id\":\"4374c07\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d11281c\"},{\"_id\":\"1af3491\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile_extra\":\"\",\"gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d6031fc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Questions? You\\u2019re covered.\",\"_id\":\"c5fb2bc\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"h3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b08b962\"},{\"_id\":\"ff0d591\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f9bc4f6\"},{\"_id\":\"557922a\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_vertical_mobile_extra\":\"\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"6a1143e\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Guaranteed by the trusted aviation services\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"06952c9\"},{\"title\":\"Professional end to end encryption for companies\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"2bee43d\"},{\"title\":\"Zero broker commission for data research and analysis\",\"content\":\"
We embrace holistic development and support for employees with the aim of being a first-choice employer within our sectors. Through a unique combination of engineering, construction and design disciplines and expertise.<\\/p>\",\"_id\":\"af5f361\"}],\"title_tag\":\"h5\",\"enable_trigger_icon\":\"\",\"item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"trigger_typography_typography\":\"custom\",\"trigger_padding\":{\"unit\":\"em\",\"top\":\"1.1\",\"right\":\"1.5\",\"bottom\":\"1.1\",\"left\":\"1.5\",\"isLinked\":false},\"trigger_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"trigger_border_color\":\"#E8792F4C\",\"trigger_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"trigger_color_hover\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_hover_background\":\"color\",\"trigger_background_hover_color\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-d5f65f9)\",\"trigger_background_active_background\":\"color\",\"trigger_background_active_color\":\"var(--e-global-color-primary)\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_color\":\"#5F6973\",\"content_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"117e394\"},{\"_id\":\"aec0c81\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4b5bb1e\"},{\"_id\":\"8e0f48d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_color\":\"var(--e-global-color-fb85fbd)\",\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_mobile_extra\":\"\",\"item_background_color_mobile_extra\":\"\",\"item_background_position_mobile_extra\":\"\",\"item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_repeat_mobile_extra\":\"\",\"item_background_size_mobile_extra\":\"\",\"item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_hover_mobile_extra\":\"\",\"item_background_hover_color_mobile_extra\":\"\",\"item_background_hover_position_mobile_extra\":\"\",\"item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_repeat_mobile_extra\":\"\",\"item_background_hover_size_mobile_extra\":\"\",\"item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_color_active_mobile_extra\":\"\",\"item_background_active_color_mobile_extra\":\"\",\"item_background_active_position_mobile_extra\":\"\",\"item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_active_repeat_mobile_extra\":\"\",\"item_background_active_size_mobile_extra\":\"\",\"item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_color_mobile_extra\":\"\",\"trigger_background_color_mobile_extra\":\"\",\"trigger_background_position_mobile_extra\":\"\",\"trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_mobile_extra\":\"\",\"trigger_background_size_mobile_extra\":\"\",\"trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_hover_mobile_extra\":\"\",\"trigger_background_hover_color_mobile_extra\":\"\",\"trigger_background_hover_position_mobile_extra\":\"\",\"trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_mobile_extra\":\"\",\"trigger_background_hover_size_mobile_extra\":\"\",\"trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_border\":\"solid\",\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_color\":\"var(--e-global-color-fb85fbd)\",\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_color_active_mobile_extra\":\"\",\"trigger_background_active_color_mobile_extra\":\"\",\"trigger_background_active_position_mobile_extra\":\"\",\"trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_mobile_extra\":\"\",\"trigger_background_active_size_mobile_extra\":\"\",\"trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_border\":\"solid\",\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_color\":\"var(--e-global-color-fae38d5)\",\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"trigger_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_mobile_extra\":\"\",\"trigger_icon_background_color_mobile_extra\":\"\",\"trigger_icon_background_position_mobile_extra\":\"\",\"trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_repeat_mobile_extra\":\"\",\"trigger_icon_background_size_mobile_extra\":\"\",\"trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_hover_mobile_extra\":\"\",\"trigger_icon_background_hover_color_mobile_extra\":\"\",\"trigger_icon_background_hover_position_mobile_extra\":\"\",\"trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"trigger_icon_background_hover_size_mobile_extra\":\"\",\"trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_color_active_mobile_extra\":\"\",\"trigger_icon_background_active_color_mobile_extra\":\"\",\"trigger_icon_background_active_position_mobile_extra\":\"\",\"trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_background_active_repeat_mobile_extra\":\"\",\"trigger_icon_background_active_size_mobile_extra\":\"\",\"trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_color_mobile_extra\":\"\",\"content_background_color_mobile_extra\":\"\",\"content_background_position_mobile_extra\":\"\",\"content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_background_repeat_mobile_extra\":\"\",\"content_background_size_mobile_extra\":\"\",\"content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_mobile_extra\":\"\",\"lqd_sticky_item_background_color_mobile_extra\":\"\",\"lqd_sticky_item_background_position_mobile_extra\":\"\",\"lqd_sticky_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_size_mobile_extra\":\"\",\"lqd_sticky_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_hover_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_item_color_active_mobile_extra\":\"\",\"lqd_sticky_item_background_active_color_mobile_extra\":\"\",\"lqd_sticky_item_background_active_position_mobile_extra\":\"\",\"lqd_sticky_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_item_background_active_size_mobile_extra\":\"\",\"lqd_sticky_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_hover_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_icon_color_active_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_color_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_position_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_size_mobile_extra\":\"\",\"lqd_sticky_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_content_color_mobile_extra\":\"\",\"lqd_sticky_content_background_color_mobile_extra\":\"\",\"lqd_sticky_content_background_position_mobile_extra\":\"\",\"lqd_sticky_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_content_background_repeat_mobile_extra\":\"\",\"lqd_sticky_content_background_size_mobile_extra\":\"\",\"lqd_sticky_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_color_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_background_position_mobile_extra\":\"\",\"dark_item_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_repeat_mobile_extra\":\"\",\"dark_item_background_size_mobile_extra\":\"\",\"dark_item_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_hover_mobile_extra\":\"\",\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_background_hover_position_mobile_extra\":\"\",\"dark_item_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_repeat_mobile_extra\":\"\",\"dark_item_background_hover_size_mobile_extra\":\"\",\"dark_item_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_color_active_mobile_extra\":\"\",\"dark_item_background_active_color_mobile_extra\":\"\",\"dark_item_background_active_position_mobile_extra\":\"\",\"dark_item_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_active_repeat_mobile_extra\":\"\",\"dark_item_background_active_size_mobile_extra\":\"\",\"dark_item_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_mobile_extra\":\"\",\"dark_trigger_background_color_mobile_extra\":\"\",\"dark_trigger_background_position_mobile_extra\":\"\",\"dark_trigger_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_mobile_extra\":\"\",\"dark_trigger_background_size_mobile_extra\":\"\",\"dark_trigger_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_hover_mobile_extra\":\"\",\"dark_trigger_background_hover_color_mobile_extra\":\"\",\"dark_trigger_background_hover_position_mobile_extra\":\"\",\"dark_trigger_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_background_hover_size_mobile_extra\":\"\",\"dark_trigger_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_color_active_mobile_extra\":\"\",\"dark_trigger_background_active_color_mobile_extra\":\"\",\"dark_trigger_background_active_position_mobile_extra\":\"\",\"dark_trigger_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_background_active_size_mobile_extra\":\"\",\"dark_trigger_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_mobile_extra\":\"\",\"dark_trigger_icon_background_color_mobile_extra\":\"\",\"dark_trigger_icon_background_position_mobile_extra\":\"\",\"dark_trigger_icon_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_size_mobile_extra\":\"\",\"dark_trigger_icon_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_hover_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_color_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_position_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_hover_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_size_mobile_extra\":\"\",\"dark_trigger_icon_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_icon_color_active_mobile_extra\":\"\",\"dark_trigger_icon_background_active_color_mobile_extra\":\"\",\"dark_trigger_icon_background_active_position_mobile_extra\":\"\",\"dark_trigger_icon_background_active_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_background_active_repeat_mobile_extra\":\"\",\"dark_trigger_icon_background_active_size_mobile_extra\":\"\",\"dark_trigger_icon_background_active_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_icon_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_content_color_mobile_extra\":\"\",\"dark_content_background_color_mobile_extra\":\"\",\"dark_content_background_position_mobile_extra\":\"\",\"dark_content_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_content_background_repeat_mobile_extra\":\"\",\"dark_content_background_size_mobile_extra\":\"\",\"dark_content_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(137, 1230, '_thumbnail_id', '1034'),
(138, 1376, 'mf_page_id', '1253'),
(139, 1376, 'metform_entries_serial_no', '1'),
(140, 1376, 'metform_entries__form_id', '656'),
(141, 1376, 'metform_entries__form_data', 'a:8:{s:16:\"mf-listing-fname\";s:22:\"asdasdasdasdsd sasdasd\";s:8:\"mf-email\";s:19:\"asdasdasd@email.com\";s:12:\"mf-telephone\";s:12:\"asdasdasdasd\";s:10:\"mf-subject\";s:6:\"asdasd\";s:9:\"mf-origin\";s:5:\"dubai\";s:14:\"mf-destination\";s:3:\"usa\";s:11:\"mf-textarea\";s:9:\"asdasdasd\";s:16:\"mf-listing-optin\";s:8:\"Accepted\";}'),
(142, 1376, 'metform_entries__file_upload_new', ''),
(143, 1409, '_wp_page_template', 'default'),
(144, 1409, '_elementor_template_type', 'page'),
(145, 1409, '_cdp_origin', '872'),
(146, 1409, '_cdp_origin_site', '-1'),
(147, 1409, '_cdp_origin_title', ' Stack item - 1 #[Counter]'),
(148, 1409, '_cdp_counter', '2'),
(149, 1409, '_elementor_edit_mode', 'builder'),
(150, 1409, '_elementor_template_type', 'page'),
(151, 1409, '_elementor_version', '3.18.2'),
(152, 1409, '_wp_page_template', 'default'),
(153, 1409, '_elementor_data', '[{\"id\":\"2847c7b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c963e70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-2.jpg\",\"id\":620,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"image_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"18938f8\"},{\"_id\":\"8f9b131\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a5d2ea6\"},{\"_id\":\"17fec47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"64bbeb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"aed038e\"},{\"_id\":\"e0ce8b8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ad6103c\"},{\"_id\":\"d129373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f60b60b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/preliminary.svg\",\"id\":384},\"library\":\"svg\"},\"title\":\"Container Insurance \",\"subtitle\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\"},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
Through a unique combination of engineering, construction and design<\\/strong> <\\/span>disciplines and expertise, Thanks to our advanced technological infrastructure and expert staff<\\/strong><\\/span>, such as supply chain management, warehousing, distribution, transportation.<\\/p>\",\"show_button\":\"yes\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=a054e68\"},\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"ib_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(155, 1409, '_wp_old_slug', 'stack-item-1'),
(156, 1410, '_wp_page_template', 'default'),
(157, 1410, '_elementor_template_type', 'page'),
(158, 1410, '_cdp_origin', '1409'),
(159, 1410, '_cdp_origin_site', '-1'),
(160, 1410, '_cdp_origin_title', ' Stack item - 1 #2 #[Counter]'),
(161, 1410, '_cdp_counter', '2'),
(162, 1410, '_wp_page_template', 'default'),
(163, 1410, '_wp_page_template', 'default'),
(164, 1410, '_elementor_template_type', 'page'),
(165, 1410, '_elementor_template_type', 'page'),
(166, 1410, '_cdp_origin', '872'),
(167, 1410, '_elementor_edit_mode', 'builder'),
(168, 1410, '_elementor_version', '3.22.1'),
(169, 1410, '_elementor_data', '[{\"id\":\"2847c7b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"64bbeb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"aed038e\"},{\"_id\":\"e0ce8b8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ad6103c\"},{\"_id\":\"d129373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":640,\"sizes\":[]}},\"elements\":[{\"id\":\"f60b60b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-5.svg\",\"id\":577},\"library\":\"svg\"},\"title\":\"J-1 Brakes Brake Shoes\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\"},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"J1<\\/span>\\u00a0Brakes<\\/span>\\u00a0offers<\\/span>\\u00a0a<\\/span>\\u00a0comprehensive<\\/span>\\u00a0range<\\/span>\\u00a0of<\\/span>\\u00a0brake<\\/span>\\u00a0products<\\/span>\\u00a0for<\\/span>\\u00a0vehicles<\\/span>\\u00a0across<\\/span>\\u00a0Japan,<\\/span>\\u00a0Europe<\\/span>\\u00a0and<\\/span>\\u00a0the<\\/span>\\u00a0Americas.<\\/span>\\u00a0Known<\\/span>\\u00a0for<\\/span>\\u00a0their<\\/span>\\u00a0strict<\\/span>\\u00a0quality<\\/span>\\u00a0control<\\/span>\\u00a0and<\\/span>\\u00a0innovative<\\/span>\\u00a0friction<\\/span>\\u00a0materials,<\\/span>\\u00a0J1<\\/span>\\u00a0Brakes<\\/span>\\u00a0ensures<\\/span>\\u00a0top<\\/span>\\u00a0performance<\\/span>\\u00a0and<\\/span>\\u00a0reliability.<\\/span>\\u00a0With<\\/span>\\u00a0nearly<\\/span>\\u00a0full<\\/span>\\u00a0market<\\/span>\\u00a0coverage<\\/span>\\u00a0and<\\/span>\\u00a0specialized<\\/span>\\u00a0formulations<\\/span>\\u00a0for<\\/span>\\u00a0different<\\/span>\\u00a0vehicle<\\/span>\\u00a0classes,<\\/span>\\u00a0J1<\\/span>\\u00a0Brakes<\\/span>\\u00a0is<\\/span>\\u00a0committed<\\/span>\\u00a0to<\\/span>\\u00a0excellence<\\/span>\\u00a0and<\\/span>\\u00a0customer<\\/span>\\u00a0satisfaction.<\\/span><\\/p>\",\"show_button\":\"yes\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=a054e68\"},\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"ib_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_button_link\":{\"url\":\"https:\\/\\/index.j1brakes.com\\/catalogue\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"c963e70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/img-2.jpg\",\"id\":2376,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"image_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"18938f8\"},{\"_id\":\"8f9b131\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a5d2ea6\"},{\"_id\":\"17fec47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"align\":\"center\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":false}]'),
(171, 1410, '_wp_old_slug', 'stack-item-1'),
(172, 1537, '_wp_page_template', 'default'),
(173, 1537, '_elementor_edit_mode', 'builder'),
(174, 1537, '_elementor_template_type', 'wp-post'),
(175, 1537, '_elementor_version', '3.18.3');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(176, 1537, '_elementor_data', '[{\"id\":\"6f11cab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"93fffc6\"},{\"_id\":\"0d0183b\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"cde8c6a\"},{\"_id\":\"2c771dd\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"25\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"lqd_sticky_container_bg_color\":\"globals\\/colors?id=61b855f\",\"border_color\":\"\"},\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_sticky_container_bg_background\":\"classic\",\"lqd_parallax_keyframes_widescreen\":[],\"lqd_inview_keyframes_widescreen\":[],\"width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_widescreen\":\"\",\"flex_justify_content_widescreen\":\"\",\"flex_align_items_widescreen\":\"\",\"flex_gap_widescreen\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_widescreen\":\"\",\"flex_align_content_widescreen\":\"\",\"grid_columns_grid_widescreen\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_widescreen\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_widescreen\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_widescreen\":\"row\",\"grid_justify_items_widescreen\":\"\",\"grid_align_items_widescreen\":\"\",\"grid_justify_content_widescreen\":\"\",\"grid_align_content_widescreen\":\"\",\"background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_widescreen\":\"\",\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_widescreen\":\"\",\"background_size_widescreen\":\"\",\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_widescreen\":\"\",\"background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_widescreen\":\"\",\"background_hover_size_widescreen\":\"\",\"background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_widescreen\":\"\",\"background_hover_slideshow_background_position_widescreen\":\"\",\"background_overlay_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_widescreen\":\"\",\"background_overlay_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_widescreen\":\"\",\"background_overlay_size_widescreen\":\"\",\"background_overlay_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_widescreen\":\"\",\"background_overlay_slideshow_background_position_widescreen\":\"\",\"background_overlay_opacity_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_widescreen\":\"\",\"background_overlay_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_widescreen\":\"\",\"background_overlay_hover_size_widescreen\":\"\",\"background_overlay_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_widescreen\":\"\",\"background_overlay_hover_slideshow_background_position_widescreen\":\"\",\"background_overlay_hover_opacity_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_widescreen\":\"\",\"lqd_sticky_container_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_widescreen\":\"\",\"lqd_sticky_container_bg_size_widescreen\":\"\",\"lqd_sticky_container_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_widescreen\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_widescreen\":\"\",\"lqd_sticky_container_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_widescreen\":\"\",\"lqd_sticky_container_bg_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_widescreen\":\"\",\"lqd_sticky_container_bg_hover_size_widescreen\":\"\",\"lqd_sticky_container_bg_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_widescreen\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_widescreen\":\"\",\"lqd_sticky_container_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_widescreen\":\"\",\"lqd_dark_container_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_widescreen\":\"\",\"lqd_dark_container_bg_size_widescreen\":\"\",\"lqd_dark_container_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_widescreen\":\"\",\"lqd_dark_container_bg_slideshow_background_position_widescreen\":\"\",\"lqd_dark_container_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_widescreen\":\"\",\"lqd_dark_container_bg_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_widescreen\":\"\",\"lqd_dark_container_bg_hover_size_widescreen\":\"\",\"lqd_dark_container_bg_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_widescreen\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_widescreen\":\"\",\"lqd_dark_container_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_widescreen\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_grow_widescreen\":\"\",\"_flex_shrink_widescreen\":\"\",\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_widescreen\":\"\",\"lqd_parallax_devices_popover_widescreen\":\"\",\"lqd_parallax_settings_widescreen_ease\":\"expo.out\",\"lqd_parallax_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_parallax_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_yoyo\":\"\",\"lqd_parallax_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_widescreen\":\"\",\"lqd_inview_settings_widescreen_ease\":\"expo.out\",\"lqd_inview_settings_widescreen_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_widescreen_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_inview_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_yoyo\":\"\",\"lqd_inview_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_widescreen\":\"\",\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"hide_widescreen\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\"},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\"},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\"},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\"},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_color_stop_tablet\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_stop_mobile\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_hover_color_stop_tablet\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_stop_mobile\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_color_stop_tablet\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_stop_mobile\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"lqd_dark_container_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_hover_color_stop_tablet\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_stop_mobile\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"flex_justify_content_tablet_extra\":\"space-between\",\"flex_align_items\":\"center\",\"flex_align_items_tablet_extra\":\"center\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"flex_gap_tablet_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"flex_wrap\":\"nowrap\",\"border_color\":\"#0000001A\",\"lqd_sticky_container_bg_color\":\"#F2F2F2\",\"flex_justify_content\":\"space-between\",\"lqd_sticky_section_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"b86f15b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33},\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"04acb37\"},{\"_id\":\"1e1bd7a\"}],\"lqd_parallax_keyframes_widescreen\":[],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"bd1ae94\"},{\"_id\":\"04b2654\"}],\"lqd_inview_keyframes_widescreen\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_laptop\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_laptop\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_laptop\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"background_hover_color_stop_laptop\":{\"unit\":\"%\"},\"background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_hover_color_b_stop_laptop\":{\"unit\":\"%\"},\"background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_hover_gradient_angle_laptop\":{\"unit\":\"deg\"},\"background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_color_stop_widescreen\":{\"unit\":\"%\"},\"background_overlay_color_stop_laptop\":{\"unit\":\"%\"},\"background_overlay_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\"},\"background_overlay_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\"},\"background_overlay_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_overlay_color_b_stop_laptop\":{\"unit\":\"%\"},\"background_overlay_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_overlay_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_overlay_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_overlay_gradient_angle_laptop\":{\"unit\":\"deg\"},\"background_overlay_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_overlay_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"background_overlay_hover_color_stop_laptop\":{\"unit\":\"%\"},\"background_overlay_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\"},\"background_overlay_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\"},\"background_overlay_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_overlay_hover_color_b_stop_laptop\":{\"unit\":\"%\"},\"background_overlay_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_overlay_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_overlay_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_overlay_hover_gradient_angle_laptop\":{\"unit\":\"deg\"},\"background_overlay_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_overlay_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_stop_laptop\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_stop_tablet\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_stop_mobile\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_b_stop_laptop\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_gradient_angle_laptop\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_stop_laptop\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_stop_tablet\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_stop_mobile\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_b_stop_laptop\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"lqd_sticky_container_bg_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_hover_gradient_angle_laptop\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_stop_laptop\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_stop_tablet\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_stop_mobile\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_b_stop_laptop\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"lqd_dark_container_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"lqd_dark_container_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_gradient_angle_laptop\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_stop_laptop\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_stop_tablet\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_stop_mobile\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_b_stop_laptop\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"lqd_dark_container_bg_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_hover_gradient_angle_laptop\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_widescreen\":\"\",\"flex_justify_content_widescreen\":\"\",\"flex_align_items_widescreen\":\"\",\"flex_gap_widescreen\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_widescreen\":\"\",\"flex_align_content_widescreen\":\"\",\"grid_columns_grid_widescreen\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_widescreen\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_widescreen\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_widescreen\":\"row\",\"grid_justify_items_widescreen\":\"\",\"grid_align_items_widescreen\":\"\",\"grid_justify_content_widescreen\":\"\",\"grid_align_content_widescreen\":\"\",\"background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_widescreen\":\"\",\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_widescreen\":\"\",\"background_size_widescreen\":\"\",\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_widescreen\":\"\",\"background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_widescreen\":\"\",\"background_hover_size_widescreen\":\"\",\"background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_widescreen\":\"\",\"background_hover_slideshow_background_position_widescreen\":\"\",\"background_overlay_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_widescreen\":\"\",\"background_overlay_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_widescreen\":\"\",\"background_overlay_size_widescreen\":\"\",\"background_overlay_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_widescreen\":\"\",\"background_overlay_slideshow_background_position_widescreen\":\"\",\"background_overlay_opacity_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_widescreen\":\"\",\"background_overlay_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_widescreen\":\"\",\"background_overlay_hover_size_widescreen\":\"\",\"background_overlay_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_widescreen\":\"\",\"background_overlay_hover_slideshow_background_position_widescreen\":\"\",\"background_overlay_hover_opacity_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_widescreen\":\"\",\"lqd_sticky_container_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_widescreen\":\"\",\"lqd_sticky_container_bg_size_widescreen\":\"\",\"lqd_sticky_container_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_widescreen\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_widescreen\":\"\",\"lqd_sticky_container_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_widescreen\":\"\",\"lqd_sticky_container_bg_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_widescreen\":\"\",\"lqd_sticky_container_bg_hover_size_widescreen\":\"\",\"lqd_sticky_container_bg_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_widescreen\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_widescreen\":\"\",\"lqd_sticky_container_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_widescreen\":\"\",\"lqd_dark_container_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_widescreen\":\"\",\"lqd_dark_container_bg_size_widescreen\":\"\",\"lqd_dark_container_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_widescreen\":\"\",\"lqd_dark_container_bg_slideshow_background_position_widescreen\":\"\",\"lqd_dark_container_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_widescreen\":\"\",\"lqd_dark_container_bg_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_widescreen\":\"\",\"lqd_dark_container_bg_hover_size_widescreen\":\"\",\"lqd_dark_container_bg_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_widescreen\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_widescreen\":\"\",\"lqd_dark_container_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_widescreen\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_grow_widescreen\":\"\",\"_flex_shrink_widescreen\":\"\",\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_widescreen\":\"\",\"lqd_parallax_devices_popover_widescreen\":\"\",\"lqd_parallax_settings_widescreen_ease\":\"expo.out\",\"lqd_parallax_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_parallax_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_yoyo\":\"\",\"lqd_parallax_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_widescreen\":\"\",\"lqd_inview_settings_widescreen_ease\":\"expo.out\",\"lqd_inview_settings_widescreen_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_widescreen_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_inview_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_yoyo\":\"\",\"lqd_inview_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_widescreen\":\"\",\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"hide_widescreen\":\"\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_align_items_mobile\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"_flex_order_tablet\":\"start\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"0bc8368\",\"elType\":\"widget\",\"settings\":{\"html\":\" <\\/animate> <\\/path> <\\/animate> <\\/path> <\\/svg>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"579942d\"},{\"_id\":\"45588da\"}],\"lqd_parallax_keyframes_widescreen\":[],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ac8a417\"},{\"_id\":\"b9858aa\"}],\"lqd_inview_keyframes_widescreen\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_dark_hide\":\"yes\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_color_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_laptop\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_laptop\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_widescreen\":\"\",\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_widescreen\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_grow_widescreen\":\"\",\"_flex_shrink_widescreen\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_widescreen\":\"\",\"lqd_parallax_devices_popover_widescreen\":\"\",\"lqd_parallax_settings_widescreen_ease\":\"expo.out\",\"lqd_parallax_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_parallax_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_yoyo\":\"\",\"lqd_parallax_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_widescreen\":\"\",\"lqd_inview_settings_widescreen_ease\":\"expo.out\",\"lqd_inview_settings_widescreen_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_widescreen_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_inview_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_yoyo\":\"\",\"lqd_inview_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_widescreen\":\"\",\"lqd_sticky__background_position_widescreen\":\"\",\"lqd_sticky__background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_widescreen\":\"\",\"lqd_sticky__background_size_widescreen\":\"\",\"lqd_sticky__background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_widescreen\":\"\",\"lqd_sticky__background_hover_position_widescreen\":\"\",\"lqd_sticky__background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_widescreen\":\"\",\"lqd_sticky__background_hover_size_widescreen\":\"\",\"lqd_sticky__background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_widescreen\":\"\",\"lqd_dark__background_position_widescreen\":\"\",\"lqd_dark__background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_widescreen\":\"\",\"lqd_dark__background_size_widescreen\":\"\",\"lqd_dark__background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_widescreen\":\"\",\"lqd_dark__background_hover_position_widescreen\":\"\",\"lqd_dark__background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_widescreen\":\"\",\"lqd_dark__background_hover_size_widescreen\":\"\",\"lqd_dark__background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_widescreen\":\"\",\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_widescreen\":\"\",\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_widescreen\":\"\",\"_background_size_widescreen\":\"\",\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_widescreen\":\"\",\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_widescreen\":\"\",\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_widescreen\":\"\",\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_widescreen\":\"\",\"hide_widescreen\":\"\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"639887a\",\"elType\":\"widget\",\"settings\":{\"html\":\" <\\/animate> <\\/path> <\\/animate> <\\/path> <\\/svg>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"579942d\"},{\"_id\":\"45588da\"}],\"lqd_parallax_keyframes_widescreen\":[],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ac8a417\"},{\"_id\":\"b9858aa\"}],\"lqd_inview_keyframes_widescreen\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_dark_show\":\"yes\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_color_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_laptop\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_laptop\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_widescreen\":\"\",\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_widescreen\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_grow_widescreen\":\"\",\"_flex_shrink_widescreen\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_widescreen\":\"\",\"lqd_parallax_devices_popover_widescreen\":\"\",\"lqd_parallax_settings_widescreen_ease\":\"expo.out\",\"lqd_parallax_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_parallax_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_yoyo\":\"\",\"lqd_parallax_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_widescreen\":\"\",\"lqd_inview_settings_widescreen_ease\":\"expo.out\",\"lqd_inview_settings_widescreen_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_widescreen_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_inview_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_yoyo\":\"\",\"lqd_inview_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_widescreen\":\"\",\"lqd_sticky__background_position_widescreen\":\"\",\"lqd_sticky__background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_widescreen\":\"\",\"lqd_sticky__background_size_widescreen\":\"\",\"lqd_sticky__background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_widescreen\":\"\",\"lqd_sticky__background_hover_position_widescreen\":\"\",\"lqd_sticky__background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_widescreen\":\"\",\"lqd_sticky__background_hover_size_widescreen\":\"\",\"lqd_sticky__background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_widescreen\":\"\",\"lqd_dark__background_position_widescreen\":\"\",\"lqd_dark__background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_widescreen\":\"\",\"lqd_dark__background_size_widescreen\":\"\",\"lqd_dark__background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_widescreen\":\"\",\"lqd_dark__background_hover_position_widescreen\":\"\",\"lqd_dark__background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_widescreen\":\"\",\"lqd_dark__background_hover_size_widescreen\":\"\",\"lqd_dark__background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_widescreen\":\"\",\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_widescreen\":\"\",\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_widescreen\":\"\",\"_background_size_widescreen\":\"\",\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_widescreen\":\"\",\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_widescreen\":\"\",\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_widescreen\":\"\",\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_widescreen\":\"\",\"hide_widescreen\":\"\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"de07716\",\"elType\":\"widget\",\"settings\":{\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c088de5\"},{\"_id\":\"f37318c\"}],\"lqd_parallax_keyframes_widescreen\":[],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ecf547b\"},{\"_id\":\"5bd3d68\"}],\"lqd_inview_keyframes_widescreen\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"dark_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align_mobile_extra\":\"\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_color_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_laptop\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_laptop\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"align_widescreen\":\"\",\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_widescreen\":\"\",\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_widescreen\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_grow_widescreen\":\"\",\"_flex_shrink_widescreen\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_widescreen\":\"\",\"lqd_parallax_devices_popover_widescreen\":\"\",\"lqd_parallax_settings_widescreen_ease\":\"expo.out\",\"lqd_parallax_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_parallax_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_yoyo\":\"\",\"lqd_parallax_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_widescreen\":\"\",\"lqd_inview_settings_widescreen_ease\":\"expo.out\",\"lqd_inview_settings_widescreen_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_widescreen_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_inview_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_yoyo\":\"\",\"lqd_inview_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_widescreen\":\"\",\"lqd_sticky__background_position_widescreen\":\"\",\"lqd_sticky__background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_widescreen\":\"\",\"lqd_sticky__background_size_widescreen\":\"\",\"lqd_sticky__background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_widescreen\":\"\",\"lqd_sticky__background_hover_position_widescreen\":\"\",\"lqd_sticky__background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_widescreen\":\"\",\"lqd_sticky__background_hover_size_widescreen\":\"\",\"lqd_sticky__background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_widescreen\":\"\",\"lqd_dark__background_position_widescreen\":\"\",\"lqd_dark__background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_widescreen\":\"\",\"lqd_dark__background_size_widescreen\":\"\",\"lqd_dark__background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_widescreen\":\"\",\"lqd_dark__background_hover_position_widescreen\":\"\",\"lqd_dark__background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_widescreen\":\"\",\"lqd_dark__background_hover_size_widescreen\":\"\",\"lqd_dark__background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_widescreen\":\"\",\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_widescreen\":\"\",\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_widescreen\":\"\",\"_background_size_widescreen\":\"\",\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_widescreen\":\"\",\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_widescreen\":\"\",\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_widescreen\":\"\",\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_widescreen\":\"\",\"hide_widescreen\":\"\"},\"elements\":[],\"widgetType\":\"lqd_site_logo\"}],\"isInner\":true},{\"id\":\"8a1af20\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"primary\",\"custom_menu\":[{\"label\":\"Home\",\"link\":{\"url\":\"#home\"},\"_id\":\"f81035b\"},{\"label\":\"About\",\"link\":{\"url\":\"#about\"},\"_id\":\"bd2f8c1\"},{\"label\":\"Services\",\"link\":{\"url\":\"#services\"},\"_id\":\"6dad7e5\"}],\"individual_item_styles\":[],\"trigger_text\":\"\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"eb86627\"},{\"_id\":\"bd54cc7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"603fa66\"},{\"_id\":\"1f2bad8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"ul_top_gap\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"li_top_typography_typography\":\"globals\\/typography?id=d19fa00\",\"trigger_typography_typography\":\"globals\\/typography?id=8cbff5c\"},\"localscroll\":\"yes\",\"li_top_color\":\"var(--e-global-color-5b35d73)\",\"li_top_color_hover\":\"var(--e-global-color-primary)\",\"li_top_color_active\":\"var(--e-global-color-primary)\",\"lqd_sticky_li_top_color\":\"#00000059\",\"items_orientation_tablet\":\"column\",\"items_h_align_tablet\":\"center\",\"mobile_dropdown\":\"yes\",\"mobile_dropdown_width_tablet_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"mobile_dropdown_width_tablet_mobile\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"mobile_dropdown_paddingtablet_extra_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"mobile_dropdown_colortablet_extra\":\"var(--e-global-color-6ad72d6)\",\"trigger_text_placement\":\"start\",\"trigger_color\":\"var(--e-global-color-5b35d73)\",\"bars_width_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_flex_order_tablet\":\"end\",\"ul_top_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"mobile_dropdown_colortablet_extra_hover\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_colortablet_extra_active\":\"var(--e-global-color-155d4ae)\",\"li_top_color_tablet\":\"var(--e-global-color-6ad72d6)\",\"ul_top_background_background\":\"color\",\"ul_top_background_color_tablet\":\"var(--e-global-color-084d856)\",\"ul_top_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"li_top_color_hover_tablet\":\"var(--e-global-color-155d4ae)\",\"li_top_color_active_tablet\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_orientation_h_tablet\":\"end\",\"mobile_dropdown_offset_x_end_tablet_mobile\":{\"unit\":\"px\",\"size\":-5,\"sizes\":[]},\"localscroll_offset\":{\"unit\":\"px\",\"size\":77,\"sizes\":[]},\"ul_top_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_sticky_li_top_color_tablet\":\"var(--e-global-color-6ad72d6)\",\"lqd_sticky_li_top_color_hover_tablet\":\"var(--e-global-color-155d4ae)\",\"lqd_sticky_li_top_color_active_tablet\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_offset_y_tablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_color\":\"var(--e-global-color-5b35d73)\",\"items_h_align_mobile\":\"center\",\"mobile_dropdown_breakpoint_tablet_extra\":\"1200px\",\"dark_li_top_color\":\"var(--e-global-color-e0f18b6)\",\"dark_li_top_color_hover\":\"var(--e-global-color-3774f73)\",\"dark_li_top_color_active\":\"var(--e-global-color-3774f73)\",\"_flex_align_self\":\"stretch\",\"_flex_order_tablet_extra\":\"end\",\"_flex_size\":\"grow\",\"ul_top_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"ul_top_background_color_tablet_extra\":\"var(--e-global-color-61b855f)\",\"ul_top_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"trigger_color_hover\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-primary)\",\"items_align_tablet_extra\":\"end\",\"ul_top_gap_laptop\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"li_top_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"trigger_type\":\"icon\",\"selected_icon\":{\"value\":\"akar-icons ai-text-align-right\",\"library\":\"akar-icons\"},\"trigger_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"items_orientation_tablet_extra\":\"row\",\"dropdown_link_color_tablet\":\"var(--e-global-color-9111146)\",\"dropdown_link_color_hover\":\"var(--e-global-color-primary)\",\"dropdown_link_color_hover_tablet\":\"var(--e-global-color-a436e60)\",\"dark_ul_top_background_background\":\"color\",\"dark_ul_top_background_color_tablet_extra\":\"var(--e-global-color-69ca162)\",\"dark_dropdown_background_background\":\"color\",\"dark_dropdown_background_color\":\"var(--e-global-color-654afd6)\",\"dark_trigger_color\":\"var(--e-global-color-9111146)\"},\"elements\":[],\"widgetType\":\"lqd-menu\"},{\"id\":\"136ef2d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_gap\":{\"column\":\"10\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":10},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"96eef88\"},{\"_id\":\"1a3e353\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9bf7422\"},{\"_id\":\"18d5df3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content_tablet_extra\":\"flex-end\",\"flex_align_items\":\"center\",\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]}},\"elements\":[{\"id\":\"2f9445a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1 800 - 1236 789\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_placement\":\"start\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"border_normal_color\":\"var(--e-global-color-495a9a6)\",\"background_hover_liquid_background_items\":[{\"_id\":\"8f81109\",\"background\":\"color\"}],\"border_hover_color\":\"var(--e-global-color-2aaab86)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c01d462\"},{\"_id\":\"aab5c45\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1a25fae\"},{\"_id\":\"a4c6062\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"hide_mobile\":\"hidden-mobile\",\"color_normal\":\"var(--e-global-color-43b07a5)\",\"color_hover\":\"var(--e-global-color-72b596c)\",\"lqd_sticky_color\":\"var(--e-global-color-e718651)\",\"lqd_sticky_border_color\":\"var(--e-global-color-c3c9dc5)\",\"lqd_sticky_color_hover\":\"var(--e-global-color-3a8a84d)\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=361df56\"},\"button_link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"dark_color\":\"var(--e-global-color-3774f73)\",\"dark_color_hover\":\"var(--e-global-color-e0f18b6)\"},\"elements\":[],\"widgetType\":\"lqd-button\"},{\"id\":\"a78dcf3\",\"elType\":\"widget\",\"settings\":{\"modal_type\":\"fullscreen\",\"modal\":\"13\",\"trigger_type\":\"grid\",\"trigger_text\":\"\",\"trigger_color\":\"#FFFFFF\",\"trigger_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bars_shape_dimension\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"45\",\"height\":\"45\"},\"bars_shape_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_offset_orientation_h\":\"end\",\"_offset_orientation_v\":\"end\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"34931d4\"},{\"_id\":\"dadb4b9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e253301\"},{\"_id\":\"25c6543\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"modal_orientation_h\":\"end\",\"modal_offset_x_end\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"modal_inner_dimensions\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_mobile_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_close_btn_offset_x_end\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"modal_inner_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"modal_inner_box_shadow_box_shadow_type\":\"yes\",\"modal_inner_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":65,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"modal_inner_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"modal_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"modal_inner_width_mobile\":{\"unit\":\"vw\",\"size\":89,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"modal_orientation_h_mobile_extra\":\"\",\"modal_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_orientation_v_mobile_extra\":\"\",\"modal_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_h_mobile_extra\":\"\",\"modal_close_btn_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_v_mobile_extra\":\"\",\"modal_close_btn_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_justify_content_mobile_extra\":\"\",\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_first_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_first_mobile_extra\":\"\",\"bars_width_second_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_second_mobile_extra\":\"\",\"bars_width_third_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_third_mobile_extra\":\"\",\"bars_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"bars_shape_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"trigger_background_color\":\"var(--e-global-color-47490ef)\",\"trigger_background_background\":\"color\",\"trigger_border_radius\":{\"unit\":\"em\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"trigger_border_radius_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_color_tablet\":\"var(--e-global-color-c8f3806)\",\"dark_modal_inner_background_background\":\"color\",\"dark_modal_inner_background_color_tablet\":\"var(--e-global-color-bf8fcd5)\",\"modal_inner_background_background\":\"color\",\"modal_inner_background_color\":\"var(--e-global-color-61b855f)\",\"lqd_parallax_keyframes_widescreen\":[],\"lqd_inview_keyframes_widescreen\":[],\"modal_orientation_h_widescreen\":\"\",\"modal_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_orientation_v_widescreen\":\"\",\"modal_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_y_bottom_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_h_widescreen\":\"\",\"modal_close_btn_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_v_widescreen\":\"\",\"modal_close_btn_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_y_bottom_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_dimensions_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_color_widescreen\":\"\",\"modal_inner_background_color_widescreen\":\"\",\"modal_inner_background_position_widescreen\":\"\",\"modal_inner_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_background_repeat_widescreen\":\"\",\"modal_inner_background_size_widescreen\":\"\",\"modal_inner_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_modal_inner_color_widescreen\":\"\",\"lqd_sticky_modal_inner_background_color_widescreen\":\"\",\"lqd_sticky_modal_inner_background_position_widescreen\":\"\",\"lqd_sticky_modal_inner_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_modal_inner_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_modal_inner_background_repeat_widescreen\":\"\",\"lqd_sticky_modal_inner_background_size_widescreen\":\"\",\"lqd_sticky_modal_inner_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_modal_inner_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_modal_inner_color_widescreen\":\"\",\"dark_modal_inner_background_color_widescreen\":\"\",\"dark_modal_inner_background_position_widescreen\":\"\",\"dark_modal_inner_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_modal_inner_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_modal_inner_background_repeat_widescreen\":\"\",\"dark_modal_inner_background_size_widescreen\":\"\",\"dark_modal_inner_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_modal_inner_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hover_custom_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_justify_content_widescreen\":\"\",\"trigger_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_color_widescreen\":\"\",\"trigger_background_position_widescreen\":\"\",\"trigger_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_repeat_widescreen\":\"\",\"trigger_background_size_widescreen\":\"\",\"trigger_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_hover_color_widescreen\":\"\",\"trigger_background_hover_position_widescreen\":\"\",\"trigger_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_hover_repeat_widescreen\":\"\",\"trigger_background_hover_size_widescreen\":\"\",\"trigger_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_background_active_color_widescreen\":\"\",\"trigger_background_active_position_widescreen\":\"\",\"trigger_background_active_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_repeat_widescreen\":\"\",\"trigger_background_active_size_widescreen\":\"\",\"trigger_background_active_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_border_active_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_active_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_first_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_first_widescreen\":\"\",\"bars_width_second_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_second_widescreen\":\"\",\"bars_width_third_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_third_widescreen\":\"\",\"bars_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_color_widescreen\":\"\",\"bars_background_position_widescreen\":\"\",\"bars_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_repeat_widescreen\":\"\",\"bars_background_size_widescreen\":\"\",\"bars_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_color_widescreen\":\"\",\"bars_background_hover_position_widescreen\":\"\",\"bars_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_hover_repeat_widescreen\":\"\",\"bars_background_hover_size_widescreen\":\"\",\"bars_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_color_widescreen\":\"\",\"bars_background_active_position_widescreen\":\"\",\"bars_background_active_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_background_active_repeat_widescreen\":\"\",\"bars_background_active_size_widescreen\":\"\",\"bars_background_active_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_dimension_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"bars_shape_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_color_widescreen\":\"\",\"bars_shape_background_position_widescreen\":\"\",\"bars_shape_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_repeat_widescreen\":\"\",\"bars_shape_background_size_widescreen\":\"\",\"bars_shape_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_hover_color_widescreen\":\"\",\"bars_shape_background_hover_position_widescreen\":\"\",\"bars_shape_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_hover_repeat_widescreen\":\"\",\"bars_shape_background_hover_size_widescreen\":\"\",\"bars_shape_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_background_active_color_widescreen\":\"\",\"bars_shape_background_active_position_widescreen\":\"\",\"bars_shape_background_active_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_active_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_background_active_repeat_widescreen\":\"\",\"bars_shape_background_active_size_widescreen\":\"\",\"bars_shape_background_active_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_border_active_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_active_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_color_widescreen\":\"\",\"lqd_sticky_trigger_background_position_widescreen\":\"\",\"lqd_sticky_trigger_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_repeat_widescreen\":\"\",\"lqd_sticky_trigger_background_size_widescreen\":\"\",\"lqd_sticky_trigger_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_hover_color_widescreen\":\"\",\"lqd_sticky_trigger_background_hover_position_widescreen\":\"\",\"lqd_sticky_trigger_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_hover_repeat_widescreen\":\"\",\"lqd_sticky_trigger_background_hover_size_widescreen\":\"\",\"lqd_sticky_trigger_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_background_active_color_widescreen\":\"\",\"lqd_sticky_trigger_background_active_position_widescreen\":\"\",\"lqd_sticky_trigger_background_active_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_background_active_repeat_widescreen\":\"\",\"lqd_sticky_trigger_background_active_size_widescreen\":\"\",\"lqd_sticky_trigger_background_active_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_border_active_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_background_color_widescreen\":\"\",\"lqd_sticky_bars_background_position_widescreen\":\"\",\"lqd_sticky_bars_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_repeat_widescreen\":\"\",\"lqd_sticky_bars_background_size_widescreen\":\"\",\"lqd_sticky_bars_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_color_widescreen\":\"\",\"lqd_sticky_bars_background_hover_position_widescreen\":\"\",\"lqd_sticky_bars_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_hover_repeat_widescreen\":\"\",\"lqd_sticky_bars_background_hover_size_widescreen\":\"\",\"lqd_sticky_bars_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_color_widescreen\":\"\",\"lqd_sticky_bars_background_active_position_widescreen\":\"\",\"lqd_sticky_bars_background_active_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_background_active_repeat_widescreen\":\"\",\"lqd_sticky_bars_background_active_size_widescreen\":\"\",\"lqd_sticky_bars_background_active_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_color_widescreen\":\"\",\"lqd_sticky_bars_shape_background_position_widescreen\":\"\",\"lqd_sticky_bars_shape_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_repeat_widescreen\":\"\",\"lqd_sticky_bars_shape_background_size_widescreen\":\"\",\"lqd_sticky_bars_shape_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_background_hover_color_widescreen\":\"\",\"lqd_sticky_bars_shape_background_hover_position_widescreen\":\"\",\"lqd_sticky_bars_shape_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_hover_repeat_widescreen\":\"\",\"lqd_sticky_bars_shape_background_hover_size_widescreen\":\"\",\"lqd_sticky_bars_shape_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_background_active_color_widescreen\":\"\",\"lqd_sticky_bars_shape_background_active_position_widescreen\":\"\",\"lqd_sticky_bars_shape_background_active_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_active_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_background_active_repeat_widescreen\":\"\",\"lqd_sticky_bars_shape_background_active_size_widescreen\":\"\",\"lqd_sticky_bars_shape_background_active_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_bars_shape_border_active_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_color_widescreen\":\"\",\"dark_trigger_background_position_widescreen\":\"\",\"dark_trigger_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_repeat_widescreen\":\"\",\"dark_trigger_background_size_widescreen\":\"\",\"dark_trigger_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_hover_color_widescreen\":\"\",\"dark_trigger_background_hover_position_widescreen\":\"\",\"dark_trigger_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_hover_repeat_widescreen\":\"\",\"dark_trigger_background_hover_size_widescreen\":\"\",\"dark_trigger_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_background_active_color_widescreen\":\"\",\"dark_trigger_background_active_position_widescreen\":\"\",\"dark_trigger_background_active_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_background_active_repeat_widescreen\":\"\",\"dark_trigger_background_active_size_widescreen\":\"\",\"dark_trigger_background_active_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_trigger_border_active_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_background_color_widescreen\":\"\",\"dark_bars_background_position_widescreen\":\"\",\"dark_bars_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_repeat_widescreen\":\"\",\"dark_bars_background_size_widescreen\":\"\",\"dark_bars_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_color_widescreen\":\"\",\"dark_bars_background_hover_position_widescreen\":\"\",\"dark_bars_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_hover_repeat_widescreen\":\"\",\"dark_bars_background_hover_size_widescreen\":\"\",\"dark_bars_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_color_widescreen\":\"\",\"dark_bars_background_active_position_widescreen\":\"\",\"dark_bars_background_active_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_background_active_repeat_widescreen\":\"\",\"dark_bars_background_active_size_widescreen\":\"\",\"dark_bars_background_active_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_color_widescreen\":\"\",\"dark_bars_shape_background_position_widescreen\":\"\",\"dark_bars_shape_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_repeat_widescreen\":\"\",\"dark_bars_shape_background_size_widescreen\":\"\",\"dark_bars_shape_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_background_hover_color_widescreen\":\"\",\"dark_bars_shape_background_hover_position_widescreen\":\"\",\"dark_bars_shape_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_hover_repeat_widescreen\":\"\",\"dark_bars_shape_background_hover_size_widescreen\":\"\",\"dark_bars_shape_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_background_active_color_widescreen\":\"\",\"dark_bars_shape_background_active_position_widescreen\":\"\",\"dark_bars_shape_background_active_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_active_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_background_active_repeat_widescreen\":\"\",\"dark_bars_shape_background_active_size_widescreen\":\"\",\"dark_bars_shape_background_active_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_bars_shape_border_active_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_widescreen\":\"\",\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_widescreen\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_grow_widescreen\":\"\",\"_flex_shrink_widescreen\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_widescreen\":\"\",\"lqd_parallax_devices_popover_widescreen\":\"\",\"lqd_parallax_settings_widescreen_ease\":\"expo.out\",\"lqd_parallax_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_parallax_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_widescreen_animation_yoyo\":\"\",\"lqd_parallax_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_widescreen\":\"\",\"lqd_inview_settings_widescreen_ease\":\"expo.out\",\"lqd_inview_settings_widescreen_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_widescreen_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_widescreen_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_enable\":\"\",\"lqd_inview_settings_widescreen_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_widescreen_animation_yoyo\":\"\",\"lqd_inview_settings_widescreen_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_widescreen\":\"\",\"lqd_sticky__background_position_widescreen\":\"\",\"lqd_sticky__background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_widescreen\":\"\",\"lqd_sticky__background_size_widescreen\":\"\",\"lqd_sticky__background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_widescreen\":\"\",\"lqd_sticky__background_hover_position_widescreen\":\"\",\"lqd_sticky__background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_widescreen\":\"\",\"lqd_sticky__background_hover_size_widescreen\":\"\",\"lqd_sticky__background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_widescreen\":\"\",\"lqd_dark__background_position_widescreen\":\"\",\"lqd_dark__background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_widescreen\":\"\",\"lqd_dark__background_size_widescreen\":\"\",\"lqd_dark__background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_widescreen\":\"\",\"lqd_dark__background_hover_position_widescreen\":\"\",\"lqd_dark__background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_widescreen\":\"\",\"lqd_dark__background_hover_size_widescreen\":\"\",\"lqd_dark__background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_widescreen\":\"\",\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_widescreen\":\"\",\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_widescreen\":\"\",\"_background_size_widescreen\":\"\",\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_widescreen\":\"\",\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_widescreen\":\"\",\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_widescreen\":\"\",\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_widescreen\":\"\",\"hide_widescreen\":\"\",\"dark_modal_inner_background_color\":\"var(--e-global-color-654afd6)\",\"grid_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"trigger_background_hover_background\":\"color\",\"trigger_background_hover_color\":\"var(--e-global-color-primary)\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"trigger_background_active_background\":\"color\",\"trigger_background_active_color\":\"var(--e-global-color-primary)\",\"bars_shape_background_background\":\"color\",\"bars_shape_background_hover_background\":\"color\",\"bars_shape_background_hover_color\":\"var(--e-global-color-primary)\",\"bars_shape_background_active_background\":\"color\",\"bars_shape_background_active_color\":\"var(--e-global-color-primary)\",\"dark_trigger_color\":\"var(--e-global-color-43b07a5)\",\"dark_trigger_background_background\":\"color\",\"dark_trigger_background_color\":\"var(--e-global-color-2ed0690)\",\"dark_trigger_background_hover_background\":\"color\",\"dark_trigger_background_hover_color\":\"var(--e-global-color-a606f90)\"},\"elements\":[],\"widgetType\":\"lqd-modal\"}],\"isInner\":true},{\"id\":\"58a3797\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2024\\/02\\/envato.svg\",\"id\":1549},\"library\":\"svg\"},\"button_dimension\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"60\",\"height\":\"60\"},\"background_normal_liquid_background_items\":[{\"_id\":\"360af4b\",\"background\":\"color\",\"color\":\"#1A864C\"}],\"border_radius_normal\":{\"unit\":\"em\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_radius_normal_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_normal_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_normal_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_normal_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_hover_liquid_background_items\":[{\"_id\":\"0e75cdc\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_position\":\"fixed\",\"_offset_x\":{\"size\":40,\"unit\":\"px\"},\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":40,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"34931d4\"},{\"_id\":\"dadb4b9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e253301\"},{\"_id\":\"25c6543\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"hide_mobile\":\"hidden-mobile\",\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(178, 1537, '_wp_old_slug', 'header-new'),
(179, 1537, '_elementor_page_settings', 'a:3:{s:14:\"header_overlay\";s:3:\"yes\";s:13:\"header_sticky\";s:3:\"yes\";s:20:\"header_sticky_offset\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-1;s:5:\"sizes\";a:0:{}}}'),
(180, 1820, 'mf_page_id', '1496'),
(181, 1820, 'metform_entries_serial_no', '2'),
(182, 1820, 'metform_entries__form_id', '1629'),
(183, 1820, 'metform_entries__form_data', 'a:3:{s:8:\"mf-email\";s:27:\"ritika.sharma0407@gmail.com\";s:7:\"mf-date\";s:24:\"02-07-2024 to 02-14-2024\";s:9:\"mf-select\";s:2:\"uk\";}'),
(184, 1820, 'metform_entries__file_upload_new', ''),
(185, 1834, '_wp_page_template', 'default'),
(186, 1834, '_elementor_edit_mode', 'builder'),
(187, 1834, '_elementor_template_type', 'wp-post'),
(188, 1834, '_elementor_version', '3.27.6'),
(189, 1834, '_elementor_data', '[{\"id\":\"121d686b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0a77b9d\"},{\"_id\":\"20bc205\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"85437d5\"},{\"_id\":\"40e0e1c\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_sticky_container_bg_background\":\"classic\",\"lqd_sticky_container_bg_color\":\"#FFFFFF\",\"lqd_sticky_section_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"flex_wrap_mobile\":\"nowrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"377d8dc2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8c77bf6\"},{\"_id\":\"d71a488\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4bd4a82\"},{\"_id\":\"a2ded87\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"15\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":15},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_flex_size_mobile\":\"grow\"},\"elements\":[{\"id\":\"2b5a285e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4677b82\"},{\"_id\":\"bf49b89\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fa41980\"},{\"_id\":\"32c204e\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"flex_wrap_mobile\":\"nowrap\",\"_flex_size_mobile\":\"none\",\"flex_justify_content_mobile\":\"center\",\"_flex_size_tablet_extra\":\"grow\",\"boxed_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"presetTitle\":\"Container\",\"presetIcon\":\"eicon-container\"},\"elements\":[{\"id\":\"77a211cf\",\"elType\":\"widget\",\"settings\":{\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"cfa6d29\"},{\"_id\":\"fa43d14\"}],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dcc1e3d\"},{\"_id\":\"187caa7\"}],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_laptop\":[],\"lqd_inview_keyframes_laptop\":[],\"uselogo\":\"\",\"image\":{\"url\":\"https:\\/\\/j1brakes.com\\/wp-content\\/uploads\\/2024\\/02\\/j-1_brakes_white.png\",\"id\":2293,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"usestickylogo\":\"\",\"sticky_image\":{\"url\":\"https:\\/\\/j1brakes.com\\/wp-content\\/uploads\\/2024\\/02\\/j-1_brakes.png\",\"id\":2309,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd_site_logo\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a9172e9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"8c77bf6\"},{\"_id\":\"d71a488\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4bd4a82\"},{\"_id\":\"a2ded87\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"37\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":37},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"30\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"623511fc\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"primary\",\"custom_menu\":[{\"label\":\"Home\",\"link\":{\"url\":\"#home\"},\"_id\":\"f81035b\"},{\"label\":\"About\",\"link\":{\"url\":\"#about\"},\"_id\":\"bd2f8c1\"},{\"label\":\"Services\",\"link\":{\"url\":\"#services\"},\"_id\":\"6dad7e5\"}],\"individual_item_styles\":[],\"trigger_text\":\"Menu\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"eb86627\"},{\"_id\":\"bd54cc7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"603fa66\"},{\"_id\":\"1f2bad8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"ul_top_gap\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"li_top_typography_typography\":\"\",\"trigger_typography_typography\":\"globals\\/typography?id=8cbff5c\"},\"localscroll\":\"yes\",\"li_top_color\":\"#FFFFFFA3\",\"li_top_color_hover\":\"#FFFFFF\",\"li_top_color_active\":\"#FFFFFF\",\"lqd_sticky_li_top_color\":\"#00000059\",\"lqd_sticky_li_top_color_hover\":\"#000000\",\"lqd_sticky_li_top_color_active\":\"#000000\",\"items_orientation_tablet\":\"column\",\"items_h_align_tablet\":\"center\",\"mobile_dropdown\":\"yes\",\"mobile_dropdown_breakpoint_tablet\":\"1024px\",\"ul_top_gap_tablet_extra\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ul_top_gap_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"mobile_dropdown_width_tablet_tablet\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"mobile_dropdown_width_tablet_mobile\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"mobile_dropdown_paddingtablet_extra_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"mobile_dropdown_colortablet_extra\":\"var(--e-global-color-6ad72d6)\",\"trigger_text_placement\":\"start\",\"trigger_color\":\"var(--e-global-color-d5f65f9)\",\"bars_width_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_flex_order_tablet\":\"end\",\"ul_top_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"mobile_dropdown_colortablet_extra_hover\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_colortablet_extra_active\":\"var(--e-global-color-155d4ae)\",\"li_top_color_tablet\":\"#FFFFFF7F\",\"ul_top_background_background\":\"color\",\"ul_top_background_color_tablet\":\"var(--e-global-color-084d856)\",\"ul_top_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"li_top_color_hover_tablet\":\"var(--e-global-color-155d4ae)\",\"li_top_color_active_tablet\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_orientation_h_tablet\":\"end\",\"mobile_dropdown_offset_x_end_tablet_mobile\":{\"unit\":\"px\",\"size\":-5,\"sizes\":[]},\"localscroll_offset\":{\"unit\":\"px\",\"size\":77,\"sizes\":[]},\"ul_top_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_sticky_li_top_color_tablet\":\"var(--e-global-color-6ad72d6)\",\"lqd_sticky_li_top_color_hover_tablet\":\"var(--e-global-color-155d4ae)\",\"lqd_sticky_li_top_color_active_tablet\":\"var(--e-global-color-155d4ae)\",\"mobile_dropdown_offset_y_tablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_tablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_y_bottomtablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_trigger_color\":\"var(--e-global-color-5b35d73)\",\"items_h_align_mobile\":\"center\",\"mobile_dropdown_offset_x_tablet_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_tablet_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"mobile_dropdown_offset_x_end_tablet_tablet\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"li_top_typography_typography\":\"custom\",\"li_top_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"li_top_typography_font_weight\":\"700\",\"li_top_typography_letter_spacing\":{\"unit\":\"em\",\"size\":0.02,\"sizes\":[]},\"dark_li_top_color\":\"#FAF6F6\",\"dark_li_top_color_hover\":\"#FF0404\",\"dark_li_top_color_active\":\"#FF0303\",\"trigger_typography_typography\":\"custom\",\"trigger_typography_font_family\":\"PPAgrandir\",\"trigger_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"trigger_typography_font_weight\":\"700\",\"trigger_typography_letter_spacing\":{\"unit\":\"em\",\"size\":0.02,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-menu\"}],\"isInner\":true},{\"id\":\"51cec58\",\"elType\":\"widget\",\"settings\":{\"lqd_predefined_style_button\":\"filled-rounded\",\"title\":\"CATALOGUE\",\"button_link\":{\"url\":\"https:\\/\\/index.j1brakes.com\\/catalogue\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"lqd_outline_glow_effect\":\"effect-1\",\"button_dimension\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_laptop\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_tablet_extra\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_tablet\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_mobile\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"padding\":{\"top\":\"0.5\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"unit\":\"em\",\"isLinked\":false},\"color_normal\":\"#ffffff\",\"background_normal_liquid_background_items\":[{\"background\":\"animated-gradient\",\"color\":\"var(--e-global-color-primary)\",\"_id\":\"a7de3da\",\"animated_gradient_colors\":\"linear-gradient(145deg, #EA2427 0%,#EA2427 16.66%,#EA2427 33.32%)\"}],\"border_radius_normal\":{\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"unit\":\"px\",\"isLinked\":true},\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f72511e\"},{\"_id\":\"836ad5e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c1e6eb6\"},{\"_id\":\"08a3d89\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"lqd-button\"},{\"id\":\"914fc70\",\"elType\":\"widget\",\"settings\":{\"modal_type\":\"box\",\"modal\":\"15\",\"trigger_type\":\"icon\",\"trigger_text\":\"\",\"trigger_color\":\"#FFFFFF\",\"trigger_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"bars_shape_dimension\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"57\",\"height\":\"57\"},\"bars_shape_background_background\":\"color\",\"bars_shape_background_color\":\"var(--e-global-color-5b35d73)\",\"bars_shape_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"34931d4\"},{\"_id\":\"dadb4b9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e253301\"},{\"_id\":\"25c6543\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"modal_orientation_h\":\"end\",\"modal_offset_x_end\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"modal_inner_background_background\":\"color\",\"modal_inner_background_color\":\"#FFFFFF\",\"modal_inner_dimensions\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_mobile_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_inner_dimensions_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"modal_close_btn_offset_x_end\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"modal_inner_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"45\",\"bottom\":\"30\",\"left\":\"45\",\"isLinked\":false},\"modal_inner_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"modal_inner_box_shadow_box_shadow_type\":\"yes\",\"modal_inner_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":65,\"spread\":-5,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"modal_inner_width\":{\"unit\":\"px\",\"size\":575,\"sizes\":[]},\"modal_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"modal_inner_width_mobile\":{\"unit\":\"vw\",\"size\":100,\"sizes\":[]},\"modal_inner_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"modal_orientation_h_mobile_extra\":\"\",\"modal_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_orientation_v_mobile_extra\":\"\",\"modal_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_h_mobile_extra\":\"\",\"modal_close_btn_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_orientation_v_mobile_extra\":\"\",\"modal_close_btn_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_close_btn_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"modal_inner_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_modal_inner_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hover_custom_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_skewY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateX_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateY_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_rotateZ_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_custom_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_justify_content_mobile_extra\":\"\",\"trigger_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"trigger_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_width_first_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_first_mobile_extra\":\"\",\"bars_width_second_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_second_mobile_extra\":\"\",\"bars_width_third_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_align_third_mobile_extra\":\"\",\"bars_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"bars_shape_dimension_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"\",\"height\":\"\"},\"bars_shape_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"bars_shape_border_radius_active_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_trigger_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_bars_shape_border_active_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"selected_icon\":{\"value\":\"akar-icons ai-whatsapp-fill\",\"library\":\"akar-icons\"},\"trigger_hover_effect\":\"scale-up\",\"bars_shape_background_hover_background\":\"color\",\"bars_shape_background_hover_color\":\"var(--e-global-color-primary)\",\"dark_modal_inner_background_background\":\"color\",\"dark_modal_inner_background_color\":\"var(--e-global-color-654afd6)\"},\"elements\":[],\"widgetType\":\"lqd-modal\"},{\"id\":\"5a991368\",\"elType\":\"widget\",\"settings\":{\"text\":\"scroll to top\",\"lqd_adaptive_color\":\"yes\",\"link_color\":\"var(--e-global-color-5b35d73)\",\"dark_link_color\":\"var(--e-global-color-3774f73)\",\"_position\":\"fixed\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_offset_y_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de07ec3\"},{\"_id\":\"7307299\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ccd892c\"},{\"_id\":\"dc2382c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"%\",\"size\":-50,\"sizes\":[]},\"_transform_translateY_effect_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"link_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"hide_mobile\":\"hidden-mobile\",\"_offset_x\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-scroll-progress\"}],\"isInner\":false}]'),
(191, 1834, '_elementor_page_settings', 'a:24:{s:13:\"header_sticky\";s:3:\"yes\";s:20:\"header_sticky_offset\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-1;s:5:\"sizes\";a:0:{}}s:14:\"header_overlay\";s:3:\"yes\";s:31:\"lqd_title_wrapper_bg_background\";s:0:\"\";s:26:\"lqd_title_wrapper_bg_color\";s:0:\"\";s:26:\"lqd_title_wrapper_bg_image\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:29:\"lqd_title_wrapper_bg_position\";s:0:\"\";s:25:\"lqd_title_wrapper_bg_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:25:\"lqd_title_wrapper_bg_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:31:\"lqd_title_wrapper_bg_attachment\";s:0:\"\";s:27:\"lqd_title_wrapper_bg_repeat\";s:0:\"\";s:25:\"lqd_title_wrapper_bg_size\";s:0:\"\";s:29:\"lqd_title_wrapper_bg_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:39:\"lqd_title_wrapper_bg_overlay_background\";s:0:\"\";s:34:\"lqd_title_wrapper_bg_overlay_color\";s:0:\"\";s:34:\"lqd_title_wrapper_bg_overlay_image\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:37:\"lqd_title_wrapper_bg_overlay_position\";s:0:\"\";s:33:\"lqd_title_wrapper_bg_overlay_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:33:\"lqd_title_wrapper_bg_overlay_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:39:\"lqd_title_wrapper_bg_overlay_attachment\";s:0:\"\";s:35:\"lqd_title_wrapper_bg_overlay_repeat\";s:0:\"\";s:33:\"lqd_title_wrapper_bg_overlay_size\";s:0:\"\";s:37:\"lqd_title_wrapper_bg_overlay_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:22:\"lqd_sizeguide_btn_text\";s:10:\"Size Guide\";}'),
(192, 1835, '_menu_item_type', 'custom'),
(193, 1835, '_menu_item_menu_item_parent', '0'),
(194, 1835, '_menu_item_object_id', '1835'),
(195, 1835, '_menu_item_object', 'custom'),
(196, 1835, '_menu_item_target', ''),
(197, 1835, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(198, 1835, '_menu_item_xfn', ''),
(199, 1835, '_menu_item_url', '#'),
(200, 1835, '_menu_item_liquid_megaprofile', '0'),
(201, 1835, '_menu_item_liquid_badge', ''),
(202, 1836, '_menu_item_type', 'custom'),
(203, 1836, '_menu_item_menu_item_parent', '0'),
(204, 1836, '_menu_item_object_id', '1836'),
(205, 1836, '_menu_item_object', 'custom'),
(206, 1836, '_menu_item_target', ''),
(207, 1836, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(208, 1836, '_menu_item_xfn', ''),
(209, 1836, '_menu_item_url', '#'),
(210, 1836, '_menu_item_liquid_megaprofile', '0'),
(211, 1836, '_menu_item_liquid_badge', '3'),
(212, 1837, '_menu_item_type', 'custom'),
(213, 1837, '_menu_item_menu_item_parent', '0'),
(214, 1837, '_menu_item_object_id', '1837'),
(215, 1837, '_menu_item_object', 'custom'),
(216, 1837, '_menu_item_target', ''),
(217, 1837, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(218, 1837, '_menu_item_xfn', ''),
(219, 1837, '_menu_item_url', '#'),
(220, 1837, '_menu_item_liquid_megaprofile', '0'),
(221, 1837, '_menu_item_liquid_badge', ''),
(222, 1838, '_menu_item_type', 'custom'),
(223, 1838, '_menu_item_menu_item_parent', '0'),
(224, 1838, '_menu_item_object_id', '1838'),
(225, 1838, '_menu_item_object', 'custom'),
(226, 1838, '_menu_item_target', ''),
(227, 1838, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(228, 1838, '_menu_item_xfn', ''),
(229, 1838, '_menu_item_url', '#'),
(230, 1838, '_menu_item_liquid_megaprofile', '0'),
(231, 1838, '_menu_item_liquid_badge', ''),
(232, 1839, '_menu_item_type', 'custom'),
(233, 1839, '_menu_item_menu_item_parent', '0'),
(234, 1839, '_menu_item_object_id', '1839'),
(235, 1839, '_menu_item_object', 'custom'),
(236, 1839, '_menu_item_target', ''),
(237, 1839, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(238, 1839, '_menu_item_xfn', ''),
(239, 1839, '_menu_item_url', '#'),
(240, 1839, '_menu_item_liquid_megaprofile', '0'),
(241, 1839, '_menu_item_liquid_badge', ''),
(242, 1840, '_menu_item_type', 'custom'),
(243, 1840, '_menu_item_menu_item_parent', '0'),
(244, 1840, '_menu_item_object_id', '1840'),
(245, 1840, '_menu_item_object', 'custom'),
(246, 1840, '_menu_item_target', ''),
(247, 1840, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(248, 1840, '_menu_item_xfn', ''),
(249, 1840, '_menu_item_url', '#'),
(250, 1840, '_menu_item_liquid_megaprofile', '0'),
(251, 1840, '_menu_item_liquid_badge', ''),
(252, 1841, '_menu_item_type', 'custom'),
(253, 1841, '_menu_item_menu_item_parent', '0'),
(254, 1841, '_menu_item_object_id', '1841'),
(255, 1841, '_menu_item_object', 'custom'),
(256, 1841, '_menu_item_target', ''),
(257, 1841, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(258, 1841, '_menu_item_xfn', ''),
(259, 1841, '_menu_item_url', '#'),
(260, 1841, '_menu_item_liquid_megaprofile', '0'),
(261, 1841, '_menu_item_liquid_badge', ''),
(262, 1842, '_menu_item_type', 'custom'),
(263, 1842, '_menu_item_menu_item_parent', '1841'),
(264, 1842, '_menu_item_object_id', '1842'),
(265, 1842, '_menu_item_object', 'custom'),
(266, 1842, '_menu_item_target', ''),
(267, 1842, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(268, 1842, '_menu_item_xfn', ''),
(269, 1842, '_menu_item_url', '#'),
(270, 1842, '_menu_item_liquid_megaprofile', '0'),
(271, 1842, '_menu_item_liquid_badge', ''),
(272, 1843, '_menu_item_type', 'custom'),
(273, 1843, '_menu_item_menu_item_parent', '1841'),
(274, 1843, '_menu_item_object_id', '1843'),
(275, 1843, '_menu_item_object', 'custom'),
(276, 1843, '_menu_item_target', ''),
(277, 1843, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(278, 1843, '_menu_item_xfn', ''),
(279, 1843, '_menu_item_url', '#'),
(280, 1843, '_menu_item_liquid_megaprofile', '0'),
(281, 1843, '_menu_item_liquid_badge', ''),
(282, 1267, '_wp_page_template', 'elementor_canvas'),
(283, 1267, 'metform_form__form_setting', 'a:137:{s:10:\"form_title\";s:24:\"Contact Form - Portfolio\";s:9:\"form_type\";s:12:\"general-form\";s:15:\"success_message\";s:39:\"Thank you! Form submitted successfully.\";s:12:\"quiz_summery\";s:0:\"\";s:13:\"store_entries\";s:1:\"1\";s:11:\"entry_title\";s:0:\"\";s:26:\"hide_form_after_submission\";s:0:\"\";s:11:\"redirect_to\";s:0:\"\";s:11:\"success_url\";s:0:\"\";s:17:\"failed_cancel_url\";s:0:\"\";s:13:\"require_login\";s:0:\"\";s:26:\"limit_total_entries_status\";s:0:\"\";s:19:\"limit_total_entries\";s:0:\"\";s:11:\"count_views\";s:0:\"\";s:26:\"mf_stop_vertical_scrolling\";s:0:\"\";s:19:\"multiple_submission\";s:0:\"\";s:16:\"enable_recaptcha\";s:0:\"\";s:25:\"capture_user_browser_data\";s:0:\"\";s:24:\"enable_user_notification\";s:0:\"\";s:18:\"user_email_subject\";s:0:\"\";s:15:\"user_email_from\";s:0:\"\";s:19:\"user_email_reply_to\";s:0:\"\";s:15:\"user_email_body\";s:0:\"\";s:33:\"user_email_attach_submission_copy\";s:0:\"\";s:25:\"enable_admin_notification\";s:0:\"\";s:19:\"admin_email_subject\";s:0:\"\";s:16:\"admin_email_from\";s:0:\"\";s:14:\"admin_email_to\";s:0:\"\";s:20:\"admin_email_reply_to\";s:0:\"\";s:16:\"admin_email_body\";s:0:\"\";s:34:\"admin_email_attach_submission_copy\";s:0:\"\";s:13:\"mf_mail_chimp\";s:0:\"\";s:15:\"mf_get_response\";s:0:\"\";s:22:\"mf_get_reponse_api_key\";s:0:\"\";s:23:\"mf_get_response_list_id\";s:0:\"\";s:11:\"mf_automizy\";s:0:\"\";s:21:\"mf_automizy_api_token\";s:0:\"\";s:19:\"mf_automizy_list_id\";s:0:\"\";s:11:\"mf_rest_api\";s:0:\"\";s:15:\"mf_rest_api_url\";s:0:\"\";s:18:\"mf_rest_api_method\";s:0:\"\";s:20:\"mf_mailchimp_api_key\";s:0:\"\";s:26:\"mf_active_campaign_api_key\";s:0:\"\";s:22:\"mf_active_campaign_url\";s:0:\"\";s:20:\"mf_mailchimp_list_id\";s:0:\"\";s:9:\"mf_zapier\";s:0:\"\";s:17:\"mf_zapier_webhook\";s:0:\"\";s:8:\"mf_slack\";s:0:\"\";s:16:\"mf_slack_webhook\";s:0:\"\";s:9:\"mf_fluent\";s:0:\"\";s:17:\"mf_fluent_webhook\";s:0:\"\";s:17:\"mf_thank_you_page\";s:0:\"\";s:14:\"mf_cancel_page\";s:0:\"\";s:9:\"mf_paypal\";s:0:\"\";s:19:\"mf_payment_currency\";s:0:\"\";s:15:\"mf_paypal_email\";s:0:\"\";s:15:\"mf_paypal_token\";s:0:\"\";s:17:\"mf_paypal_sandbox\";s:0:\"\";s:9:\"mf_stripe\";s:0:\"\";s:19:\"mf_stripe_image_url\";s:0:\"\";s:31:\"mf_stripe_live_publishiable_key\";s:0:\"\";s:25:\"mf_stripe_live_secret_key\";s:0:\"\";s:17:\"mf_stripe_sandbox\";s:0:\"\";s:31:\"mf_stripe_test_publishiable_key\";s:0:\"\";s:25:\"mf_stripe_test_secret_key\";s:0:\"\";s:21:\"mf_google_map_api_key\";s:0:\"\";s:16:\"mf_save_progress\";s:0:\"\";s:18:\"mf_field_name_show\";s:0:\"\";s:12:\"mf_recaptcha\";s:0:\"\";s:20:\"mf_recaptcha_version\";s:0:\"\";s:21:\"mf_recaptcha_site_key\";s:0:\"\";s:23:\"mf_recaptcha_secret_key\";s:0:\"\";s:24:\"mf_recaptcha_site_key_v3\";s:0:\"\";s:26:\"mf_recaptcha_secret_key_v3\";s:0:\"\";s:14:\"mf_convert_kit\";s:0:\"\";s:15:\"mf_ckit_list_id\";s:0:\"\";s:15:\"mf_ckit_api_key\";s:0:\"\";s:15:\"mf_ckit_sec_key\";s:0:\"\";s:21:\"mf_aweber_dev_api_key\";s:0:\"\";s:21:\"mf_aweber_dev_api_sec\";s:0:\"\";s:14:\"mf_mail_aweber\";s:0:\"\";s:17:\"mf_aweber_list_id\";s:0:\"\";s:18:\"mf_active_campaign\";s:0:\"\";s:26:\"mf_active_campaign_list_id\";s:0:\"\";s:25:\"mf_active_campaign_tag_id\";s:0:\"\";s:12:\"mf_mail_poet\";s:0:\"\";s:20:\"mf_mail_poet_list_id\";s:0:\"\";s:10:\"mf_hubspot\";s:0:\"\";s:16:\"mf_hubspot_forms\";s:0:\"\";s:16:\"mf_hubsopt_token\";s:0:\"\";s:24:\"mf_hubsopt_refresh_token\";s:0:\"\";s:21:\"mf_hubsopt_token_type\";s:0:\"\";s:21:\"mf_hubsopt_expires_in\";s:0:\"\";s:20:\"mf_hubspot_form_guid\";s:0:\"\";s:24:\"mf_hubspot_form_portalId\";s:0:\"\";s:7:\"mf_zoho\";s:0:\"\";s:13:\"mf_zoho_token\";s:0:\"\";s:15:\"mf_registration\";s:0:\"\";s:8:\"mf_login\";s:0:\"\";s:15:\"mf_form_to_post\";s:0:\"\";s:11:\"mf_mailster\";s:0:\"\";s:19:\"mf_mailster_list_id\";s:0:\"\";s:18:\"mf_mailster_fields\";s:0:\"\";s:28:\"mf_post_submission_post_type\";s:0:\"\";s:24:\"mf_post_submission_title\";s:0:\"\";s:26:\"mf_post_submission_content\";s:0:\"\";s:25:\"mf_post_submission_author\";s:0:\"\";s:33:\"mf_post_submission_featured_image\";s:0:\"\";s:12:\"mf_helpscout\";s:0:\"\";s:19:\"mf_helpscout_app_id\";s:0:\"\";s:23:\"mf_helpscout_app_secret\";s:0:\"\";s:18:\"mf_helpscout_token\";s:0:\"\";s:20:\"mf_helpscout_mailbox\";s:0:\"\";s:33:\"mf_helpscout_conversation_subject\";s:0:\"\";s:40:\"mf_helpscout_conversation_customer_email\";s:0:\"\";s:45:\"mf_helpscout_conversation_customer_first_name\";s:0:\"\";s:44:\"mf_helpscout_conversation_customer_last_name\";s:0:\"\";s:42:\"mf_helpscout_conversation_customer_message\";s:0:\"\";s:15:\"mf_google_sheet\";s:0:\"\";s:30:\"mf_google_spreadsheets_list_id\";s:0:\"\";s:24:\"mf_google_sheets_list_id\";s:0:\"\";s:25:\"mf_google_sheet_client_id\";s:0:\"\";s:29:\"mf_google_sheet_client_secret\";s:0:\"\";s:25:\"email_verification_enable\";s:0:\"\";s:32:\"email_verification_email_subject\";s:0:\"\";s:35:\"email_verification_confirm_redirect\";s:0:\"\";s:26:\"email_verification_heading\";s:0:\"\";s:28:\"email_verification_paragraph\";s:0:\"\";s:13:\"mf_sms_status\";s:0:\"\";s:11:\"mf_sms_from\";s:0:\"\";s:25:\"mf_sms_twilio_account_sid\";s:0:\"\";s:24:\"mf_sms_twilio_auth_token\";s:0:\"\";s:18:\"mf_sms_user_status\";s:0:\"\";s:16:\"mf_sms_user_body\";s:0:\"\";s:19:\"mf_sms_admin_status\";s:0:\"\";s:17:\"mf_sms_admin_body\";s:0:\"\";s:15:\"mf_sms_admin_to\";s:0:\"\";}'),
(284, 1267, '_elementor_edit_mode', 'builder'),
(285, 1267, '_metform_cloned_id', 'template-0'),
(286, 1267, '_elementor_template_type', 'wp-post'),
(287, 1267, '_elementor_version', '3.18.2');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(288, 1267, '_elementor_data', '[{\"id\":\"fdeed10\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7c4cd2f\"},{\"_id\":\"8f849ec\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8ea48cf\"},{\"_id\":\"a7f3954\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile_extra\":\"\",\"flex_justify_content_mobile_extra\":\"\",\"flex_align_items_mobile_extra\":\"\",\"flex_gap_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"flex_wrap_mobile_extra\":\"\",\"flex_align_content_mobile_extra\":\"\",\"grid_columns_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_rows_grid_mobile_extra\":{\"unit\":\"fr\",\"size\":\"\",\"sizes\":[]},\"grid_gaps_mobile_extra\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\"},\"grid_auto_flow_mobile_extra\":\"row\",\"grid_justify_items_mobile_extra\":\"\",\"grid_align_items_mobile_extra\":\"\",\"grid_justify_content_mobile_extra\":\"\",\"grid_align_content_mobile_extra\":\"\",\"background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_position_mobile_extra\":\"\",\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_repeat_mobile_extra\":\"\",\"background_size_mobile_extra\":\"\",\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_position_mobile_extra\":\"\",\"background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_repeat_mobile_extra\":\"\",\"background_hover_size_mobile_extra\":\"\",\"background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_slideshow_background_size_mobile_extra\":\"\",\"background_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_position_mobile_extra\":\"\",\"background_overlay_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_repeat_mobile_extra\":\"\",\"background_overlay_size_mobile_extra\":\"\",\"background_overlay_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_position_mobile_extra\":\"\",\"background_overlay_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_repeat_mobile_extra\":\"\",\"background_overlay_hover_size_mobile_extra\":\"\",\"background_overlay_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_slideshow_background_size_mobile_extra\":\"\",\"background_overlay_hover_slideshow_background_position_mobile_extra\":\"\",\"background_overlay_hover_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"shape_divider_top_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_sticky_container_bg_hover_position_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_sticky_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_sticky_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_position_mobile_extra\":\"\",\"lqd_dark_container_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_size_mobile_extra\":\"\",\"lqd_dark_container_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark_container_bg_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"lqd_dark_container_bg_hover_position_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_repeat_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark_container_bg_hover_slideshow_background_size_mobile_extra\":\"\",\"lqd_dark_container_bg_hover_slideshow_background_position_mobile_extra\":\"\",\"lqd_dark_container_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky_section_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky_section_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[{\"id\":\"d1bfab3\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Your Name\",\"mf_input_placeholder\":\"Your name\",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"mf_input_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF\",\"mf_input_border_border\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"36d6346\"},{\"_id\":\"dc23719\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"606cc51\"},{\"_id\":\"6ba9bfa\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"mf_input_validation_type\":\"by_character_length\",\"mf_input_min_length\":5,\"mf_input_warning_text_typography_typography\":\"custom\",\"mf_input_warning_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_place_holder_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_warning_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_position_mobile_extra\":\"\",\"mf_input_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_repeat_mobile_extra\":\"\",\"mf_input_background_size_mobile_extra\":\"\",\"mf_input_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_position_mobile_extra\":\"\",\"mf_input_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_repeat_mobile_extra\":\"\",\"mf_input_background_hover_size_mobile_extra\":\"\",\"mf_input_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_hover_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_focus_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_position_mobile_extra\":\"\",\"mf_input_background_focus_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_repeat_mobile_extra\":\"\",\"mf_input_background_focus_size_mobile_extra\":\"\",\"mf_input_background_focus_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_focus_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_focus_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_typgraphy_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_border_radius_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"mf-listing-fname\"},{\"id\":\"3ecf8a2\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Email\",\"mf_input_name\":\"email\",\"mf_input_placeholder\":\"Your email\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"mf_input_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF\",\"mf_input_border_border\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"36d6346\"},{\"_id\":\"dc23719\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"606cc51\"},{\"_id\":\"6ba9bfa\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"mf_input_required\":\"yes\",\"mf_input_warning_text_typography_typography\":\"custom\",\"mf_input_warning_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_error_message_typography_typography\":\"custom\",\"mf_error_message_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_warning_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_position_mobile_extra\":\"\",\"mf_input_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_repeat_mobile_extra\":\"\",\"mf_input_background_size_mobile_extra\":\"\",\"mf_input_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_position_mobile_extra\":\"\",\"mf_input_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_repeat_mobile_extra\":\"\",\"mf_input_background_hover_size_mobile_extra\":\"\",\"mf_input_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_hover_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_focus_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_position_mobile_extra\":\"\",\"mf_input_background_focus_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_repeat_mobile_extra\":\"\",\"mf_input_background_focus_size_mobile_extra\":\"\",\"mf_input_background_focus_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_focus_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_focus_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_typgraphy_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_border_radius_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_error_message_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_error_message_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_help_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"mf-email\"},{\"id\":\"09955dc\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Textarea\",\"mf_input_name\":\"textarea\",\"mf_input_placeholder\":\"Your message\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"mf_input_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF\",\"mf_input_border_border\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"36d6346\"},{\"_id\":\"dc23719\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"606cc51\"},{\"_id\":\"6ba9bfa\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"mf_input_required\":\"yes\",\"mf_input_validation_type\":\"by_character_length\",\"mf_input_min_length\":50,\"mf_input_warning_text_typography_typography\":\"custom\",\"mf_input_warning_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_place_holder_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_label_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_label_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_warning_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_warning_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_position_mobile_extra\":\"\",\"mf_input_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_repeat_mobile_extra\":\"\",\"mf_input_background_size_mobile_extra\":\"\",\"mf_input_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_position_mobile_extra\":\"\",\"mf_input_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_repeat_mobile_extra\":\"\",\"mf_input_background_hover_size_mobile_extra\":\"\",\"mf_input_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_hover_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_hover_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_background_focus_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_position_mobile_extra\":\"\",\"mf_input_background_focus_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_repeat_mobile_extra\":\"\",\"mf_input_background_focus_size_mobile_extra\":\"\",\"mf_input_background_focus_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_focus_slideshow_background_size_mobile_extra\":\"\",\"mf_input_background_focus_slideshow_background_position_mobile_extra\":\"\",\"mf_input_border_focus_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_input_typgraphy_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_typgraphy_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_border_radius_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_place_holder_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_input_help_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\"},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"8459db6\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Send email\",\"mf_btn_align\":\"justify\",\"mf_hidden_input\":[],\"mf_btn_text_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"mf_btn_text_padding_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_text_padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_text_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_text_padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_text_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_hover_color_background\":\"classic\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"36d6346\"},{\"_id\":\"dc23719\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"606cc51\"},{\"_id\":\"6ba9bfa\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(203.16896030245752, 12.860869565217387, 204, 0)\"},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_box_shadow_hover_box_shadow\":{\"horizontal\":61,\"vertical\":80,\"blur\":82,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.97)\"},\"mf_btn_typography_typography\":\"custom\",\"mf_btn_typography_font_weight\":\"700\",\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=47490ef\",\"mf_btn_text_color\":\"globals\\/colors?id=d5f65f9\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\",\"mf_btn_hover_color\":\"globals\\/colors?id=d5f65f9\"},\"mf_btn_bg_color_color\":\"#FFD84F\",\"mf_btn_hover_color\":\"#FFD84F\",\"mf_btn_align_laptop\":\"justify\",\"mf_btn_align_mobile_extra\":\"\",\"mf_btn_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_text_color_mobile_extra\":\"\",\"mf_btn_bg_color_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_position_mobile_extra\":\"\",\"mf_btn_bg_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_color_repeat_mobile_extra\":\"\",\"mf_btn_bg_color_size_mobile_extra\":\"\",\"mf_btn_bg_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_color_slideshow_background_size_mobile_extra\":\"\",\"mf_btn_bg_color_slideshow_background_position_mobile_extra\":\"\",\"mf_btn_hover_color_mobile_extra\":\"\",\"mf_btn_bg_hover_color_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_position_mobile_extra\":\"\",\"mf_btn_bg_hover_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_hover_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_hover_color_repeat_mobile_extra\":\"\",\"mf_btn_bg_hover_color_size_mobile_extra\":\"\",\"mf_btn_bg_hover_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_bg_hover_color_slideshow_background_size_mobile_extra\":\"\",\"mf_btn_bg_hover_color_slideshow_background_position_mobile_extra\":\"\",\"mf_btn_border_style_mobile_extra\":\"\",\"mf_btn_border_dimensions_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_border_color_mobile_extra\":\"\",\"mf_btn_hover_border_color_mobile_extra\":\"\",\"mf_btn_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_normal_icon_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"mf_btn_normal_icon_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"mf_btn_normal_icon_vertical_align_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"stretch\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__background_position_mobile_extra\":\"\",\"lqd_sticky__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_repeat_mobile_extra\":\"\",\"lqd_sticky__background_size_mobile_extra\":\"\",\"lqd_sticky__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__background_hover_position_mobile_extra\":\"\",\"lqd_sticky__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__background_hover_repeat_mobile_extra\":\"\",\"lqd_sticky__background_hover_size_mobile_extra\":\"\",\"lqd_sticky__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__background_position_mobile_extra\":\"\",\"lqd_dark__background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_repeat_mobile_extra\":\"\",\"lqd_dark__background_size_mobile_extra\":\"\",\"lqd_dark__background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__background_hover_position_mobile_extra\":\"\",\"lqd_dark__background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__background_hover_repeat_mobile_extra\":\"\",\"lqd_dark__background_hover_size_mobile_extra\":\"\",\"lqd_dark__background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"mf_btn_align_tablet\":\"justify\",\"mf_btn_align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(290, 1844, '_menu_item_type', 'post_type'),
(291, 1844, '_menu_item_menu_item_parent', '0'),
(292, 1844, '_menu_item_object_id', '1230'),
(293, 1844, '_menu_item_object', 'liquid-portfolio'),
(294, 1844, '_menu_item_target', ''),
(295, 1844, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(296, 1844, '_menu_item_xfn', ''),
(297, 1844, '_menu_item_url', ''),
(298, 1844, '_menu_item_liquid_megaprofile', '0'),
(299, 1844, '_menu_item_liquid_badge', ''),
(300, 1845, '_menu_item_type', 'post_type'),
(301, 1845, '_menu_item_menu_item_parent', '0'),
(302, 1845, '_menu_item_object_id', '1222'),
(303, 1845, '_menu_item_object', 'liquid-portfolio'),
(304, 1845, '_menu_item_target', ''),
(305, 1845, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(306, 1845, '_menu_item_xfn', ''),
(307, 1845, '_menu_item_url', ''),
(308, 1845, '_menu_item_liquid_megaprofile', '0'),
(309, 1845, '_menu_item_liquid_badge', ''),
(310, 1846, '_menu_item_type', 'post_type'),
(311, 1846, '_menu_item_menu_item_parent', '0'),
(312, 1846, '_menu_item_object_id', '1211'),
(313, 1846, '_menu_item_object', 'liquid-portfolio'),
(314, 1846, '_menu_item_target', ''),
(315, 1846, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(316, 1846, '_menu_item_xfn', ''),
(317, 1846, '_menu_item_url', ''),
(318, 1846, '_menu_item_liquid_megaprofile', '0'),
(319, 1846, '_menu_item_liquid_badge', ''),
(320, 1629, '_wp_page_template', 'elementor_canvas'),
(321, 1629, 'metform_form__form_setting', 'a:19:{s:10:\"form_title\";s:18:\"Form - Appointment\";s:15:\"success_message\";s:39:\"Thank you! Form submitted successfully.\";s:13:\"store_entries\";s:1:\"1\";s:11:\"entry_title\";s:15:\"Entry # [mf_id]\";s:11:\"redirect_to\";s:0:\"\";s:18:\"user_email_subject\";s:0:\"\";s:15:\"user_email_from\";s:0:\"\";s:19:\"user_email_reply_to\";s:0:\"\";s:15:\"user_email_body\";s:0:\"\";s:19:\"admin_email_subject\";s:0:\"\";s:14:\"admin_email_to\";s:0:\"\";s:16:\"admin_email_from\";s:0:\"\";s:20:\"admin_email_reply_to\";s:0:\"\";s:16:\"admin_email_body\";s:0:\"\";s:20:\"mf_hubspot_form_guid\";s:0:\"\";s:24:\"mf_hubspot_form_portalId\";s:0:\"\";s:20:\"mf_mailchimp_list_id\";s:0:\"\";s:16:\"mf_slack_webhook\";s:0:\"\";s:9:\"form_type\";s:12:\"general-form\";}'),
(322, 1629, '_elementor_edit_mode', 'builder'),
(323, 1629, '_metform_cloned_id', 'template-0'),
(324, 1629, '_elementor_template_type', 'wp-post'),
(325, 1629, '_elementor_version', '3.18.3'),
(326, 1629, '_elementor_data', '[{\"id\":\"a402ef7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"nowrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"dcfbc69\"},{\"_id\":\"715e421\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"711445b\"},{\"_id\":\"dd1aabb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"stretch\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":32,\"blur\":84,\"spread\":0,\"color\":\"rgba(124, 124, 147, 0.2)\"},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"44699ce\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Enter your email address\",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_warning_text_typography_typography\":\"custom\",\"mf_input_warning_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"28\",\"left\":\"56\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"9578c81\"},{\"_id\":\"c2ba362\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"19941c9\"},{\"_id\":\"57024d1\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=1a0022c\"},\"mf_input_border_border\":\"none\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"mf_error_message_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"mf-email\"},{\"id\":\"6c87fe4\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Date\",\"mf_input_name\":\"mf-date\",\"mf_input_placeholder\":\"Select a Date\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_disable_date_list\":[],\"mf_input_range_date\":\"yes\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"28\",\"left\":\"56\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"125e37e\"},{\"_id\":\"66dc2c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"982b43d\"},{\"_id\":\"55c96d5\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=1a0022c\",\"mf_input_background_color\":\"globals\\/colors?id=2ed0690\",\"mf_input_border_color\":\"\"},\"mf_input_background_color\":\"#C9C9C9\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"mf_input_border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"mf_input_border_color\":\"#E1E1E180\",\"mf_input_placeholder_color\":\"#000000\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"mf_input_required\":\"yes\",\"mf_input_warning_text_typography_typography\":\"custom\",\"mf_input_warning_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-date\"},{\"id\":\"4856d30\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Select\",\"mf_input_name\":\"mf-select\",\"mf_input_placeholder\":\"Select a Location\",\"mf_input_list\":[{\"mf_input_option_text\":\"UK\",\"mf_input_option_value\":\"uk\",\"_id\":\"0a0501b\"},{\"mf_input_option_text\":\"FR\",\"mf_input_option_value\":\"fr\",\"_id\":\"aff0494\"},{\"mf_input_option_text\":\"TR\",\"mf_input_option_value\":\"tr\",\"_id\":\"d86b830\"}],\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"28\",\"left\":\"56\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7afaaa1\"},{\"_id\":\"932ea86\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1abf05e\"},{\"_id\":\"b154387\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"mf_input_border_border\":\"none\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"mf_input_placeholder_color\":\"globals\\/colors?id=1a0022c\"},\"mf_input_required\":\"yes\"},\"elements\":[],\"widgetType\":\"mf-select\"},{\"id\":\"18f994b\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Submit Button\",\"mf_btn_align\":\"justify\",\"mf_hidden_input\":[],\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_laptop\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"214f432\"},{\"_id\":\"63b916b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"394a94f\"},{\"_id\":\"eeac4d6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=bbd049c\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=primary\"},\"mf_btn_align_tablet\":\"justify\",\"mf_btn_align_mobile\":\"justify\",\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(255, 255, 255, 0)\"},\"_element_width_tablet\":\"inherit\",\"mf_btn_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":false}]'),
(328, 1629, 'metform_form__form_total_entries', '1'),
(329, 1629, 'mf_redirect_params_status', 'false'),
(405, 1853, '_menu_item_type', 'post_type'),
(406, 1853, '_menu_item_menu_item_parent', '0'),
(407, 1853, '_menu_item_object_id', '1204'),
(408, 1853, '_menu_item_object', 'liquid-portfolio'),
(409, 1853, '_menu_item_target', ''),
(410, 1853, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(411, 1853, '_menu_item_xfn', ''),
(412, 1853, '_menu_item_url', ''),
(413, 1853, '_menu_item_liquid_megaprofile', '0'),
(414, 1853, '_menu_item_liquid_badge', ''),
(415, 1854, '_menu_item_type', 'post_type'),
(416, 1854, '_menu_item_menu_item_parent', '0'),
(417, 1854, '_menu_item_object_id', '1195'),
(418, 1854, '_menu_item_object', 'liquid-portfolio'),
(419, 1854, '_menu_item_target', ''),
(420, 1854, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(421, 1854, '_menu_item_xfn', ''),
(422, 1854, '_menu_item_url', ''),
(423, 1854, '_menu_item_liquid_megaprofile', '0'),
(424, 1854, '_menu_item_liquid_badge', ''),
(425, 1855, '_menu_item_type', 'post_type'),
(426, 1855, '_menu_item_menu_item_parent', '0'),
(427, 1855, '_menu_item_object_id', '1175'),
(428, 1855, '_menu_item_object', 'liquid-portfolio'),
(429, 1855, '_menu_item_target', ''),
(430, 1855, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(431, 1855, '_menu_item_xfn', ''),
(432, 1855, '_menu_item_url', ''),
(433, 1855, '_menu_item_liquid_megaprofile', '0'),
(434, 1855, '_menu_item_liquid_badge', ''),
(453, 1735, '_elementor_template_type', 'wp-page'),
(454, 1735, '_elementor_version', '3.27.7'),
(455, 1735, '_wp_page_template', 'default'),
(456, 1735, '_elementor_page_settings', 'a:2:{s:18:\"liquid_sidebar_one\";s:0:\"\";s:22:\"lqd_sizeguide_btn_text\";s:10:\"Size Guide\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(457, 1735, '_elementor_data', '[{\"id\":\"92ac24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=6g-PETEzR74\",\"background_video_start\":35,\"background_video_end\":119,\"background_play_on_mobile\":\"yes\",\"background_video_fallback\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-1.jpg\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_image\":{\"url\":\"https:\\/\\/j1brakes.com\\/wp-content\\/uploads\\/2024\\/08\\/toyota_hilux.jpg\",\"id\":2606,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e5fa930\"},{\"_id\":\"751cc7b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f35c56c\"},{\"_id\":\"e2d5bac\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"z_index\":2,\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"banner\",\"background_slideshow_slide_duration\":2500,\"background_slideshow_ken_burns\":\"yes\",\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"flex_wrap\":\"wrap\",\"background_xpos\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_section_color_scheme\":\"dark\",\"width_tablet_extra\":{\"unit\":\"px\",\"size\":997},\"width_tablet\":{\"unit\":\"px\",\"size\":604},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_tablet_extra\":\"initial\",\"_element_width_tablet\":\"initial\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"overlay_blend_mode\":\"darken\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-335,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1081,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":2.6,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":199,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"presetTitle\":\"Container\",\"presetIcon\":\"eicon-container\",\"background_overlay_attachment\":\"scroll\",\"background_attachment\":\"scroll\",\"css_filters_css_filter\":\"custom\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"80fc763\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f08e23b\"},{\"_id\":\"c032df7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b403030\"},{\"_id\":\"e72e6b2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"_title\":\"Content\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f6b7bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"High Quality\",\"_id\":\"6b6ba9d\"},{\"_id\":\"6935af4\",\"text\":\"Friction Materials\",\"text_individual_styles\":\"yes\",\"item_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"item_color\":\"var(--e-global-color-a606f90)\"}],\"lqd_text_tag\":\"h1\",\"lqd_text_split_type\":\"words\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e087f51\"},{\"_id\":\"49acf98\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"61c5639\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},{\"_id\":\"d0c7a7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":12,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_trigger\":\"topParentContainer\",\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\",\"_element_width\":\"initial\",\"_title\":\"Liquid Text\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"73c0ef1\",\"elType\":\"widget\",\"settings\":{\"lqd_predefined_style_button\":\"filled-rounded\",\"title\":\"CATALOGUE\",\"button_link\":{\"url\":\"https:\\/\\/index.j1brakes.com\\/catalogue\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_hover_effect\":\"rise\",\"lqd_outline_glow_effect\":\"effect-1\",\"button_dimension\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_laptop\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_tablet_extra\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_tablet\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"button_dimension_mobile\":{\"width\":\"\",\"height\":\"\",\"unit\":\"px\",\"isLinked\":true},\"padding\":{\"top\":\"0.5\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"unit\":\"em\",\"isLinked\":false},\"color_normal\":\"#ffffff\",\"background_normal_liquid_background_items\":[{\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\",\"_id\":\"1c1369a\"}],\"border_radius_normal\":{\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"unit\":\"px\",\"isLinked\":true},\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f72511e\"},{\"_id\":\"836ad5e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c1e6eb6\"},{\"_id\":\"08a3d89\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_flex_align_self_tablet_extra\":\"center\",\"_background_color_stop_laptop\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b_stop_laptop\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_angle_laptop\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_color_stop_laptop\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_laptop\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_angle_laptop\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"c6f68d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"147a08f\"},{\"_id\":\"06f523a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"15024c0\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"4a2d58b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"animation\":\"bounceInUp\"},\"elements\":[{\"id\":\"2cb8f36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.com\\/wp-content\\/uploads\\/2024\\/06\\/j1-brakes_family.png\",\"id\":1887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b996601\"},{\"_id\":\"59105f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7453df2\"},{\"_id\":\"2f1fb80\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e96a98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"9bf0463\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"63a58c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Pads\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"animated-gradient\",\"color\":\"#EA2427\",\"animated_gradient_colors\":\"linear-gradient(145deg, #EA2427 32.35886985907078%,#EA2427 57.56048159935483%,#EA2427 68.14515853027412%,#EA2427 83.26612557444454%,#EA2427 95.36%)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"#EA2427\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"button_icon_effect_custom\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"#BrakePad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"694b412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"c82e678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Shoes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"animated-gradient\",\"color\":\"#EA2427\",\"animated_gradient_colors\":\"linear-gradient(145deg, #EA2427 0%,#EA2427 16.66%,#EA2427 33.32%,#EA2427 49.98%,#EA2427 66.64%,#EA2427 83.33%,#EA2427 100%)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"#EA2427\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"#BrakeShoe\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"5dd42bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a8df547\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore J-1 Brakes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"animated-gradient\",\"color\":\"#EA2427\",\"animated_gradient_colors\":\"linear-gradient(145deg, #EA2427 0%,#EA2427 16.66%,#EA2427 33.32%,#EA2427 49.98%,#EA2427 66.64%,#EA2427 83.33%,#EA2427 100%)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"#EA2427\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/j1brakes.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9509bc0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"1cc15a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/brake-disc.png\",\"id\":1864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":-180.2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"_z_index\":0,\"lqd_parallax\":\"yes\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3f28982\",\"y\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},{\"_id\":\"77db96b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"16ea3cb\"},{\"_id\":\"a4cb738\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6c7d141\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"25\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a7cad1e\"},{\"_id\":\"b26f8d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4dadf0b\"},{\"_id\":\"12c357d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_aa_perspective\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"ec6b773\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Brake Solutions.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_text_typography_typography\":\"custom\",\"_element_width\":\"initial\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9bb9cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"J-1 Brakes offers a comprehensive range of friction products for vehicles across Japan, Europe and the Americas. Known for their strict quality control and innovative friction materials, J-1 Brakes ensures top performance and reliability. With nearly full market coverage and specialized formulations for different vehicle classes, J-1 Brakes is committed to excellence and customer satisfaction.\",\"_id\":\"8a124c4\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"#1B1B1B\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"cd5a277\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Catalogue\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/index.j1brakes.com\\/catalogue\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"74a24c4\",\"elType\":\"widget\",\"settings\":{\"active_item\":0,\"items\":[{\"title\":\"Exceptional Friction\",\"content\":\"J-1 Brakes prides itself on its exceptional friction technology, designed to provide superior stopping power and reliability. Our friction materials are formulated to withstand extreme conditions, ensuring consistent performance and safety. By utilizing advanced engineering and rigorous testing, J-1 Brakes delivers products that reduce wear, enhance durability, and maintain optimal friction levels, offering drivers unparalleled confidence on the road. Experience the difference with J-1 Brakes\' exceptional friction capabilities.<\\/p>\",\"_id\":\"e44a71e\"},{\"title\":\"Reduced Noise Emission\",\"content\":\"
J-1 Brakes is dedicated to providing a quieter driving experience with their reduced noise emission technology. By utilizing advanced materials and precision engineering, our brake systems minimize vibrations and squeals that typically occur during braking. This focus on noise reduction not only enhances comfort but also improves overall vehicle performance. With J-1 Brakes, you can enjoy a smooth and silent ride, knowing that your brakes are designed to operate quietly and efficiently under all conditions.<\\/p>\",\"_id\":\"4991663\"},{\"title\":\"International Shipment\",\"content\":\"
J-1 Brakes ensures that our exceptional products are available to you, supported by our commitment to customer satisfaction and global service excellence.<\\/p>\",\"_id\":\"889cd6a\"},{\"title\":\"Rapid Response Time\",\"content\":\"
Designed for immediate and effective stopping power, our brakes utilize advanced friction materials and precision engineering to ensure quick engagement and shorter stopping distances. This rapid response capability enhances safety and control, providing drivers with the confidence they need in critical situations.<\\/p>\",\"_id\":\"49da747\"},{\"title\":\"Reliable Performance\",\"content\":\"
J-1 Brakes products meet the requirements of ISO 9001, ISO 14001, AMECA, ECE-R90, Link Standard SAE J-661 Rated F&G, IATF 16949,\\u00a0SAE\\u00a0J2975<\\/p>\",\"_id\":\"2e27ebd\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b199bd5\"},{\"_id\":\"ebf85d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"878905b\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]}},{\"_id\":\"99f211e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_position\":\"next_to_title\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_icon_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.35\",\"isLinked\":false},\"trigger_icon_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_color\":\"var(--e-global-color-1a0022c)\",\"content_color_laptop\":\"var(--e-global-color-primary)\",\"content_color_tablet_extra\":\"var(--e-global-color-primary)\",\"content_color_tablet\":\"var(--e-global-color-primary)\",\"content_color_mobile\":\"var(--e-global-color-primary)\",\"content_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"enable_trigger_icon_visible_on_hover_active\":\"yes\",\"trigger_color_hover\":\"#EA2427\",\"trigger_color_hover_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_hover_mobile\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"#EA2427\",\"trigger_color_active_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_active_mobile\":\"var(--e-global-color-primary)\",\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"content\":\"
Our Ocean Freight service offers cost-effective, eco-friendly solutions for shipping your goods across the globe. Leveraging partnerships with major carriers, we ensure secure, reliable sea transport.<\\/p>\",\"item_color\":\"#1B1B1B\",\"item_color_hover\":\"var(--e-global-color-1a0022c)\",\"item_color_active\":\"var(--e-global-color-1a0022c)\",\"trigger_color\":\"var(--e-global-color-5b35d73)\",\"trigger_icon_color\":\"var(--e-global-color-1a0022c)\",\"trigger_icon_color_hover\":\"#EA2427\",\"content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"20db145\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"055\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64058\"},{\"_id\":\"e91658e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"56a8ebe\"},{\"_id\":\"abaece2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ed06e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"741b764\"},{\"_id\":\"070d066\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"74a50a0\"},{\"_id\":\"8fb757f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d8b7dee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/1.png\",\"id\":1867,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"px\",\"size\":363,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"fcc08fe\"},{\"_id\":\"b6d7a94\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e4d40f5\",\"x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"skewX\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"8a956db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"luminosity\",\"lqd_inview\":\"yes\",\"height\":{\"unit\":\"px\",\"size\":271,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true},{\"id\":\"f0b5658\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2c07f6b\"},{\"_id\":\"fe1fd2e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dc6dba1\"},{\"_id\":\"49b152d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f95e41a\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"EXCEPTIONAL QUALITY\",\"_id\":\"bfc9ea3\"}],\"lqd_text_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"12\",\"bottom\":\"6\",\"left\":\"12\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"184f163\"},{\"_id\":\"8c27125\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"466091a\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"b50b26f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=1c775b2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"302b4c7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Why Choose J-1 Brakes?\",\"_id\":\"8129e42\"}],\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1c08060\"},{\"_id\":\"4c8f53a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"11c6148\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c1b09d3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=6b6095e\"},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.035,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"781f1b6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"90b08bb\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Proven Reliability\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"534a177\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Safety Assurance\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"77247f6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Durability\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"9065c96\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Precision Engineering\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"94716ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"220b384\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Performance Consistency\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"4122f9e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Industry Standards\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"e7240f0\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Versatility\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"91079a6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Ease of Installation\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"c6e6c96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3708cac\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Customer Satisfaction\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"3acb219\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Full Range\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b2a84f7\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Environmental Responsibility\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b47f267\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Economical\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"30b8d9d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"85\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"88bc71a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/dots.png\",\"id\":409,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1260,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_z_index\":0,\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6666f9b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Top-Quality Brake Solutions\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4cd5034\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6448929\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"8487355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"e90b1c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"flex_align_items\":\"flex-start\"},\"elements\":[{\"id\":\"2a376a8\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Premium Material\",\"subtitle\":\"1\",\"description\":\"
High quality friction material which are crafted with high-grade materials renowned for their strength and resilience.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/explore.svg\",\"id\":388},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b4d006e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Superior Performance\",\"subtitle\":\"2\",\"description\":\"
Experience unmatched braking precision and responsiveness with J1 Brakes, delivering consistent performance in every situation.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/language.svg\",\"id\":383},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"c1e6c8b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Long-lasting Durability\",\"subtitle\":\"3\",\"description\":\"
Engineered to endure rigorous conditions, J1 Brakes offer exceptional longevity without compromising on quality or safety.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/preliminary.svg\",\"id\":384},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f649c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"content_width\":\"full\",\"_element_id\":\"BrakePad\"},\"elements\":[{\"id\":\"a32aa81\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"item_content\":\"Stackable item #1\",\"_id\":\"e01fb82\",\"content_type\":\"el_template\",\"content_templates\":\"872\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca1f771\"},{\"_id\":\"a12f7ff\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"87e67dd\"},{\"_id\":\"168ea26\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width\":\"inherit\",\"adaptive_height\":\"yes\",\"slides_indicator_align\":\"start\",\"slides_indicator_placement_h\":\"end\",\"slides_indicator_offset_x_end\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"slides_indicator_offset_x_end_laptop\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slides_indicator_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slides_indicator_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"slides_indicator_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"slides_indicator_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"slides_indicator_slides_indicator_color_mobile\":\"#FFFFFF\",\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"slides_indicator\":\"\"},\"elements\":[],\"widgetType\":\"lqd-stack\"}],\"isInner\":false},{\"id\":\"3a1652bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"160\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"BrakeShoe\"},\"elements\":[{\"id\":\"27b69511\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"aed038e\"},{\"_id\":\"e0ce8b8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ad6103c\"},{\"_id\":\"d129373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569fa\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-4.svg\",\"id\":438},\"library\":\"svg\"},\"title\":\"J-1 Brakes - Brake Shoe\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\"},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
Organic and non-ferrous fibres formulation specially designed to provide safe and comfortable drive for passenger vehicles. It is an ultra-quiet, low dust and long lasting material. It is gentle on brake drums and has a stable coefficient of friction over a wide range of temperatures and speeds. It is well known for its qualities of smooth progressive brake and great safety in extreme braking.<\\/p>\",\"show_button\":\"yes\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=a054e68\"},\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"ib_button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link\":{\"url\":\"https:\\/\\/index.j1brakes.com\\/catalogue\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"8dd882a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/img-2.jpg\",\"id\":2376,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"image_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"18938f8\"},{\"_id\":\"8f9b131\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a5d2ea6\"},{\"_id\":\"17fec47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":false},{\"id\":\"7ed2a14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"lqd_section_color_scheme\":\"dark\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/grid.svg\",\"id\":458,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-1.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"15\",\"bottom\":\"140\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4cb3832\"},{\"_id\":\"98839cc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"273c03e\"},{\"_id\":\"9944de4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EA2427\"},\"elements\":[{\"id\":\"80dc830\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"One Stop Solutions\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=a054e68\"},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_text_alignment_mobile\":\"center\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"91fd90d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"17d0631\"},{\"_id\":\"c107796\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b1b630c\"},{\"_id\":\"5cf2685\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"50\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"2414b66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a9d9983\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/index.svg\",\"id\":2126},\"library\":\"svg\"},\"title\":\"High Quality Friction Materials\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"27eeb55\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f437daf\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/icon_2.svg\",\"id\":2131},\"library\":\"svg\"},\"title\":\"Automotive Market Coverage\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"dd0ccc1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"d74c31f\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/icon_3.svg\",\"id\":2132},\"library\":\"svg\"},\"title\":\"Rotor Friendly Technologies\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"1b597a2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"606dc75\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/icon_4.svg\",\"id\":2133},\"library\":\"svg\"},\"title\":\"Unique Material Types\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ead48e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c5a472a\"},{\"_id\":\"2d9feb2\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"02783dd\"},{\"_id\":\"4c7f96c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f7081fc\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-5.svg\",\"id\":577},\"library\":\"svg\"},\"title\":\"Stop in Your Tracks\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
J-1 Brakes is dedicated to excellence, recognized as a premier manufacturer of high-performance brake solutions. With a comprehensive product range tailored for Japan, Europe, and the Americas, each brake system is meticulously designed and crafted under stringent quality controls. Utilizing state-of-the-art friction materials, J-1 Brakes consistently upholds superior standards, ensuring reliable performance and reinforcing our reputation for quality and innovation<\\/p>\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.95,\"sizes\":[]},\"title_tag\":\"h2\",\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"7ce2b7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/j1-brakes-disc.png\",\"id\":1877,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca73a96\"},{\"_id\":\"3c396de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d85a765\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"31bf9ba\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"darken\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"70a71df\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Brake Pads\",\"content\":\"
J-1 Brakes advanced brake pads deliver exceptional stopping power and durability, designed to exceed expectations in performance and safety.<\\/p>\",\"_id\":\"24977ac\"},{\"title\":\"Brake Shoes\",\"content\":\"
Experience reliable braking with J-1 Brakes precision-engineered brake shoes, engineered for durability and optimal performance.<\\/p>
\\u00a0<\\/div><\\/div>\",\"_id\":\"6319640\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"item_border_border\":\"solid\",\"item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"item_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"trigger_icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"44\",\"height\":\"44\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b2900e4\"},{\"_id\":\"9a5eef3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b16c393\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"6617d29\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_color\":\"var(--e-global-color-a606f90)\",\"trigger_icon_background_background\":\"color\",\"trigger_icon_background_color\":\"#EA2427\",\"trigger_icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"content_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"bf500aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"},\"hide_desktop\":\"hidden-desktop\",\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5c6d8cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"min_height\":{\"unit\":\"custom\",\"size\":\"75%\",\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/patt.svg\",\"id\":596,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"z_index\":0},\"elements\":[],\"isInner\":true},{\"id\":\"ec851a1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Testimonials\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9c466e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dd98cd\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Hear from them\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"1f6f613\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f5a42de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"140\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":140},\"flex_gap_tablet\":{\"column\":\"45\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":45}},\"elements\":[{\"id\":\"8631dcd\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"_id\":\"d3e5cc2\",\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dde6fa5\"},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"76a933c\"}],\"wrap_around\":\"yes\",\"nav_buttons\":\"\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"draggable\":\"\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"},{\"id\":\"4490a06\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content\":\"
Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"_id\":\"d3e5cc2\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"2162383\"},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"587305d\"}],\"wrap_around\":\"yes\",\"connected_carousels\":\"testimonials-image\",\"nav_buttons\":\"\",\"pagination_dots\":\"yes\",\"dots_align\":\"start\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"dots_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"dots_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"10\",\"height\":\"10\"},\"dots_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_background_background\":\"color\",\"dots_background_color\":\"#00000026\",\"dots_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"dots_background_hover_background\":\"color\",\"dots_background_hover_color\":\"var(--e-global-color-5b35d73)\",\"dots_background_active_background\":\"color\",\"dots_background_active_color\":\"var(--e-global-color-5b35d73)\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"cell_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"05e9398\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"22dbd90\"},{\"_id\":\"023a6c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"264c000\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bae44b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"b5ba05e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-1.svg\",\"id\":606,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"c061a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-2.svg\",\"id\":607,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"4ca3a67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-3.svg\",\"id\":608,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"1afa352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-5.svg\",\"id\":609,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"97be2f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-6.svg\",\"id\":610,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9b4c21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a5667fa\"},{\"_id\":\"37e47ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7c8c71d\"},{\"_id\":\"f33dbb7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_section_color_scheme\":\"dark\",\"background_color\":\"#EA2427\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/stripe-2x.png\",\"id\":1879,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"2b1095e\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"lqd_text_content\":[{\"text\":\"Our Reach\",\"_id\":\"5a9fab7\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5a07005\"},{\"_id\":\"f9012bf\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"71345fa\"},{\"_id\":\"f2ab8af\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"74962f0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/world_map-1.svg\",\"id\":2500,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a0941f2\"},{\"_id\":\"04d0eda\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9226ae6\"},{\"_id\":\"d09c008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"image_size\":\"liquid-portfolio-big-sq\",\"_element_width\":\"inherit\",\"_flex_align_self\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0f23d7f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"883b62f\"},{\"_id\":\"596ce1b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dda72e1\"},{\"_id\":\"0418ff0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"2567264\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get instant Parts quote.\",\"_id\":\"ddc11c4\"}],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5266ab9\"},{\"_id\":\"6b5d95c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"03f5047\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7919fc2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"3288cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"We\'re Here to Help! \",\"_id\":\"b33797a\",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\"},{\"_id\":\"59f13da\",\"text\":\"\\nAt J-1 Brakes, customer satisfaction is our top priority. Whether you have a question about our products, need assistance with an order or want to provide feedback, we\'re here to listen and\\u00a0support\\u00a0you.\"}],\"lqd_text_tag\":\"p\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":38,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3e11117\"},{\"_id\":\"bf9de26\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c0b3a08\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7aa6680\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"881d033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b65dcca\"},{\"_id\":\"ba13e12\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2396245\"},{\"_id\":\"2a0bab6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"df84ced\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"flex-end\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"e4b5bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Email\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"16bdc85\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"info@j1brakes.com\",\"button_link\":{\"url\":\"mailto:info@j1brakes.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"icon_placement\":\"start\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":false},\"color_normal\":\"#FFFFFF\",\"background_normal_liquid_background_items\":[{\"_id\":\"74a09bf\",\"background\":\"animated-gradient\",\"color\":\"#EA2427\",\"animated_gradient_colors\":\"linear-gradient(145deg, #EA2427 0%,#EA2427 100%)\"}],\"border_radius_normal\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"color_hover\":\"#F3F3F3\",\"background_hover_liquid_background_items\":[{\"_id\":\"e7fd6cb\",\"background\":\"animated-gradient\",\"color\":\"#000000\",\"animated_gradient_colors\":\"linear-gradient(145deg, #000000 83.33%,#000000 100%)\"}],\"button_icon_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7a6f8f6\"},{\"_id\":\"1059faf\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"748d863\"},{\"_id\":\"b5a59fa\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"088a2bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"flex-end\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8367278\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"WhatsApp\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"2d48494\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"+971 52 601 4484\",\"button_link\":{\"url\":\"https:\\/\\/wa.link\\/gykhx5\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"akar-icons ai-whatsapp-fill\",\"library\":\"akar-icons\"},\"icon_placement\":\"start\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":false},\"color_normal\":\"#FFFFFF\",\"background_normal_liquid_background_items\":[{\"_id\":\"74a09bf\",\"background\":\"animated-gradient\",\"color\":\"#EA2427\",\"animated_gradient_colors\":\"linear-gradient(145deg, #EA2427 0%,#EA2427 16.66%)\"}],\"border_radius_normal\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"color_hover\":\"#F3F3F3\",\"background_hover_liquid_background_items\":[{\"_id\":\"e7fd6cb\",\"background\":\"animated-gradient\",\"color\":\"#000000\",\"animated_gradient_colors\":\"linear-gradient(145deg, #000000 0%,#000000 100%)\"}],\"button_icon_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7a6f8f6\"},{\"_id\":\"1059faf\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"748d863\"},{\"_id\":\"b5a59fa\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"4a752b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b65dcca\"},{\"_id\":\"ba13e12\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2396245\"},{\"_id\":\"2a0bab6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(459, 1857, '_menu_item_type', 'post_type'),
(460, 1857, '_menu_item_menu_item_parent', '0'),
(461, 1857, '_menu_item_object_id', '1735'),
(462, 1857, '_menu_item_object', 'page'),
(463, 1857, '_menu_item_target', ''),
(464, 1857, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(465, 1857, '_menu_item_xfn', ''),
(466, 1857, '_menu_item_url', ''),
(467, 1857, '_menu_item_liquid_megaprofile', '0'),
(468, 1857, '_menu_item_liquid_badge', ''),
(509, 44, '_wp_attached_file', '2023/09/logo.svg'),
(510, 44, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:11790;s:5:\"width\";i:65;s:6:\"height\";i:32;}'),
(511, 45, '_wp_attached_file', '2023/09/logo-dark.svg'),
(512, 45, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:11816;s:5:\"width\";i:65;s:6:\"height\";i:32;}'),
(513, 61, '_wp_attached_file', '2023/10/square-pattern.png'),
(514, 61, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1433;s:6:\"height\";i:351;s:4:\"file\";s:26:\"2023/10/square-pattern.png\";s:8:\"filesize\";i:665;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"square-pattern-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:553;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"square-pattern-1024x251.png\";s:5:\"width\";i:1024;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2676;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"square-pattern-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:618;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(515, 216, '_wp_attached_file', '2023/10/stripe@2x.png'),
(516, 216, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:31;s:6:\"height\";i:31;s:4:\"file\";s:21:\"2023/10/stripe@2x.png\";s:8:\"filesize\";i:603;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(517, 273, '_wp_attached_file', '2023/10/road-freight.jpg'),
(518, 273, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:678;s:6:\"height\";i:628;s:4:\"file\";s:24:\"2023/10/road-freight.jpg\";s:8:\"filesize\";i:19429;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"road-freight-300x278.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12225;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"road-freight-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4030;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(519, 274, '_wp_attached_file', '2023/10/air-freight.jpg'),
(520, 274, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:678;s:6:\"height\";i:628;s:4:\"file\";s:23:\"2023/10/air-freight.jpg\";s:8:\"filesize\";i:32900;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"air-freight-300x278.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18561;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"air-freight-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6396;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(521, 275, '_wp_attached_file', '2023/10/ocean-freight.jpg'),
(522, 275, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:678;s:6:\"height\";i:628;s:4:\"file\";s:25:\"2023/10/ocean-freight.jpg\";s:8:\"filesize\";i:19604;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"ocean-freight-300x278.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ocean-freight-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3949;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(523, 329, '_wp_attached_file', '2023/10/truck.png'),
(524, 329, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:840;s:6:\"height\";i:338;s:4:\"file\";s:17:\"2023/10/truck.png\";s:8:\"filesize\";i:80688;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"truck-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49246;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"truck-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(525, 348, '_wp_attached_file', '2023/10/check.svg'),
(528, 348, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1169;s:5:\"width\";i:11;s:6:\"height\";i:11;}'),
(530, 383, '_wp_attached_file', '2023/10/language.svg'),
(531, 383, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2914;s:5:\"width\";i:63;s:6:\"height\";i:63;}'),
(534, 384, '_wp_attached_file', '2023/10/preliminary.svg'),
(535, 384, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1997;s:5:\"width\";i:63;s:6:\"height\";i:63;}'),
(538, 388, '_wp_attached_file', '2023/10/explore.svg'),
(539, 388, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1526;s:5:\"width\";i:62;s:6:\"height\";i:62;}'),
(541, 409, '_wp_attached_file', '2023/10/dots.png'),
(542, 409, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2520;s:6:\"height\";i:1350;s:4:\"file\";s:16:\"2023/10/dots.png\";s:8:\"filesize\";i:826;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"dots-300x161.png\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1717;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"dots-1024x549.png\";s:5:\"width\";i:1024;s:6:\"height\";i:549;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44569;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"dots-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:369;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(543, 437, '_wp_attached_file', '2023/10/img-2.jpg'),
(544, 437, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1150;s:6:\"height\";i:1138;s:4:\"file\";s:17:\"2023/10/img-2.jpg\";s:8:\"filesize\";i:45191;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"img-2-300x297.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13515;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"img-2-1024x1013.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1013;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89765;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"img-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4651;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(545, 438, '_wp_attached_file', '2023/10/icon-4.svg'),
(546, 438, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:21859;s:5:\"width\";i:55;s:6:\"height\";i:54;}'),
(548, 458, '_wp_attached_file', '2023/10/grid.svg'),
(549, 458, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1638;s:5:\"width\";i:500;s:6:\"height\";i:519;}'),
(550, 460, '_wp_attached_file', '2023/10/noise-1.jpg'),
(551, 460, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2023/10/noise-1.jpg\";s:8:\"filesize\";i:202219;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"noise-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32256;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"noise-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5883;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(552, 468, '_wp_attached_file', '2023/10/icon-3.svg'),
(553, 468, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3500;s:5:\"width\";i:65;s:6:\"height\";i:64;}'),
(555, 469, '_wp_attached_file', '2023/10/icon.svg'),
(556, 469, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2802;s:5:\"width\";i:61;s:6:\"height\";i:62;}'),
(558, 470, '_wp_attached_file', '2023/10/icon-2.svg'),
(559, 470, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4409;s:5:\"width\";i:65;s:6:\"height\";i:64;}'),
(561, 471, '_wp_attached_file', '2023/10/icon-1.svg'),
(562, 471, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3981;s:5:\"width\";i:65;s:6:\"height\";i:64;}'),
(564, 568, '_wp_attached_file', '2023/10/container.jpg'),
(565, 568, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1236;s:6:\"height\";i:984;s:4:\"file\";s:21:\"2023/10/container.jpg\";s:8:\"filesize\";i:57303;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"container-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11709;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"container-1024x815.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:815;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"container-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5062;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(567, 569, '_wp_attached_file', '2023/10/bg-11.jpg'),
(568, 569, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2880;s:6:\"height\";i:1596;s:4:\"file\";s:17:\"2023/10/bg-11.jpg\";s:8:\"filesize\";i:138564;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"bg-11-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4687;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"bg-11-1024x567.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48689;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"bg-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2587;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(572, 577, '_wp_attached_file', '2023/10/icon-5.svg'),
(573, 577, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2507;s:5:\"width\";i:66;s:6:\"height\";i:66;}'),
(575, 596, '_wp_attached_file', '2023/10/patt.svg'),
(576, 596, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:324;s:5:\"width\";i:46;s:6:\"height\";i:46;}'),
(580, 601, '_wp_attached_file', '2023/10/avatar-1.jpg'),
(581, 601, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:470;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2023/10/avatar-1.jpg\";s:8:\"filesize\";i:9276;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"avatar-1-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9586;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"avatar-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(583, 606, '_wp_attached_file', '2023/10/logo-1.svg'),
(584, 606, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1840;s:5:\"width\";i:81;s:6:\"height\";i:64;}'),
(585, 607, '_wp_attached_file', '2023/10/logo-2.svg'),
(586, 607, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:646;s:5:\"width\";i:82;s:6:\"height\";i:64;}'),
(587, 608, '_wp_attached_file', '2023/10/logo-3.svg'),
(588, 608, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1671;s:5:\"width\";i:81;s:6:\"height\";i:64;}'),
(589, 609, '_wp_attached_file', '2023/10/logo-5.svg'),
(590, 609, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:952;s:5:\"width\";i:82;s:6:\"height\";i:64;}'),
(591, 610, '_wp_attached_file', '2023/10/logo-6.svg'),
(592, 610, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1878;s:5:\"width\";i:81;s:6:\"height\";i:64;}'),
(593, 620, '_wp_attached_file', '2023/10/bg-2.jpg'),
(594, 620, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2880;s:6:\"height\";i:1052;s:4:\"file\";s:16:\"2023/10/bg-2.jpg\";s:8:\"filesize\";i:72711;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"bg-2-300x110.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3963;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"bg-2-1024x374.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34549;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"bg-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2801;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(595, 848, '_wp_attached_file', '2023/10/phone.svg'),
(596, 848, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1358;s:5:\"width\";i:13;s:6:\"height\";i:13;}'),
(598, 967, '_wp_attached_file', '2023/11/truck.png'),
(599, 967, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:730;s:6:\"height\";i:1032;s:4:\"file\";s:17:\"2023/11/truck.png\";s:8:\"filesize\";i:43553;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"truck-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29650;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"truck-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180204;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"truck-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14637;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(600, 1010, '_wp_attached_file', '2023/11/grid-2.svg'),
(601, 1010, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1648;s:5:\"width\";i:490;s:6:\"height\";i:470;}'),
(602, 1034, '_wp_attached_file', '2023/11/Rectangle-18941.jpg'),
(603, 1034, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1921;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"2023/11/Rectangle-18941.jpg\";s:8:\"filesize\";i:88866;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Rectangle-18941-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8812;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Rectangle-18941-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75149;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Rectangle-18941-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(604, 1034, '_elementor_source_image_hash', '01eb18fffae79f8f77002236233951db089837c3'),
(605, 1044, '_wp_attached_file', '2023/11/ship.webp'),
(606, 1044, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:998;s:6:\"height\";i:950;s:4:\"file\";s:17:\"2023/11/ship.webp\";s:8:\"filesize\";i:35364;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"ship-300x286.webp\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10118;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ship-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4110;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(607, 1129, '_wp_attached_file', '2023/12/post-17@2x.jpg'),
(608, 1129, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2880;s:6:\"height\";i:1620;s:4:\"file\";s:22:\"2023/12/post-17@2x.jpg\";s:8:\"filesize\";i:99074;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"post-17@2x-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7170;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"post-17@2x-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49207;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"post-17@2x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(609, 1235, '_wp_attached_file', '2023/12/portfolio-5.jpg'),
(610, 1235, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:720;s:6:\"height\";i:503;s:4:\"file\";s:23:\"2023/12/portfolio-5.jpg\";s:8:\"filesize\";i:23024;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"portfolio-5-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9249;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"portfolio-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4376;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(611, 1236, '_wp_attached_file', '2023/12/portfolio-6.jpg'),
(612, 1236, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:720;s:6:\"height\";i:503;s:4:\"file\";s:23:\"2023/12/portfolio-6.jpg\";s:8:\"filesize\";i:31306;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"portfolio-6-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10748;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"portfolio-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4389;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(614, 1237, '_wp_attached_file', '2023/12/portfolio-4.jpg'),
(615, 1237, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:720;s:6:\"height\";i:503;s:4:\"file\";s:23:\"2023/12/portfolio-4.jpg\";s:8:\"filesize\";i:29421;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"portfolio-4-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9559;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"portfolio-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3993;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(617, 1238, '_wp_attached_file', '2023/12/portfolio-3.jpg'),
(618, 1238, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:720;s:6:\"height\";i:502;s:4:\"file\";s:23:\"2023/12/portfolio-3.jpg\";s:8:\"filesize\";i:17559;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"portfolio-3-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7473;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"portfolio-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3452;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(619, 1239, '_wp_attached_file', '2023/12/portfolio-2.jpg'),
(620, 1239, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:720;s:6:\"height\";i:502;s:4:\"file\";s:23:\"2023/12/portfolio-2.jpg\";s:8:\"filesize\";i:27356;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"portfolio-2-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9959;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"portfolio-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(621, 1240, '_wp_attached_file', '2023/12/portfolio-1.jpg'),
(622, 1240, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:720;s:6:\"height\";i:502;s:4:\"file\";s:23:\"2023/12/portfolio-1.jpg\";s:8:\"filesize\";i:46890;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"portfolio-1-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13789;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"portfolio-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5357;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(623, 1417, '_wp_attached_file', '2023/12/partner-2.jpg'),
(624, 1417, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1130;s:6:\"height\";i:918;s:4:\"file\";s:21:\"2023/12/partner-2.jpg\";s:8:\"filesize\";i:85500;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"partner-2-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18410;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"partner-2-1024x832.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:832;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147149;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"partner-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6327;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(625, 1425, '_wp_attached_file', '2023/12/img-1.jpg'),
(626, 1425, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2880;s:6:\"height\";i:1588;s:4:\"file\";s:17:\"2023/12/img-1.jpg\";s:8:\"filesize\";i:112336;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"img-1-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6672;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"img-1-1024x565.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44713;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"img-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3556;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(627, 1429, '_wp_attached_file', '2023/12/img-2.png'),
(628, 1429, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1324;s:6:\"height\";i:940;s:4:\"file\";s:17:\"2023/12/img-2.png\";s:8:\"filesize\";i:283424;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"img-2-300x213.png\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51778;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"img-2-1024x727.png\";s:5:\"width\";i:1024;s:6:\"height\";i:727;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:411792;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"img-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23338;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(629, 1433, '_wp_attached_file', '2023/11/post-17@2x.jpg.jpg'),
(630, 1433, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2880;s:6:\"height\";i:898;s:4:\"file\";s:26:\"2023/11/post-17@2x.jpg.jpg\";s:8:\"filesize\";i:82346;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"post-17@2x.jpg-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4071;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"post-17@2x.jpg-1024x319.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27747;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"post-17@2x.jpg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3483;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(631, 1468, '_wp_attached_file', '2023/12/trucks.png'),
(632, 1468, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1324;s:6:\"height\";i:940;s:4:\"file\";s:18:\"2023/12/trucks.png\";s:8:\"filesize\";i:227377;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"trucks-300x213.png\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47663;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"trucks-1024x727.png\";s:5:\"width\";i:1024;s:6:\"height\";i:727;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:374975;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"trucks-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21698;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(633, 1475, '_wp_attached_file', '2023/12/trucks2.png'),
(634, 1475, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1324;s:6:\"height\";i:940;s:4:\"file\";s:19:\"2023/12/trucks2.png\";s:8:\"filesize\";i:249021;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trucks2-300x213.png\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48300;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trucks2-1024x727.png\";s:5:\"width\";i:1024;s:6:\"height\";i:727;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:370272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trucks2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22207;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(635, 1546, '_wp_attached_file', '2024/02/ocean-explorer-dark.svg'),
(636, 1546, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2859;s:5:\"width\";i:66;s:6:\"height\";i:31;}'),
(637, 1547, '_wp_attached_file', '2024/02/ocean-explorer-black.svg'),
(638, 1547, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2848;s:5:\"width\";i:66;s:6:\"height\";i:31;}'),
(639, 1548, '_wp_attached_file', '2024/02/chat.svg'),
(640, 1548, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:740;s:5:\"width\";i:21;s:6:\"height\";i:19;}'),
(641, 1549, '_wp_attached_file', '2024/02/envato.svg'),
(642, 1549, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:478;s:5:\"width\";i:22;s:6:\"height\";i:25;}'),
(643, 1578, '_wp_attached_file', '2024/02/banner-new.webp'),
(644, 1578, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1240;s:6:\"height\";i:902;s:4:\"file\";s:23:\"2024/02/banner-new.webp\";s:8:\"filesize\";i:39582;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"banner-new-300x218.webp\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10026;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"banner-new-1024x745.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:41116;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"banner-new-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4976;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(645, 1752, '_wp_attached_file', '2024/02/container.webp'),
(646, 1752, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1770;s:6:\"height\";i:1392;s:4:\"file\";s:22:\"2024/02/container.webp\";s:8:\"filesize\";i:198898;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"container-300x236.webp\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8784;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"container-1024x805.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:805;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:40176;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"container-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4014;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(667, 1735, '_edit_lock', '1744886898:1'),
(673, 6, '_edit_lock', '1738654115:1'),
(697, 1864, '_wp_attached_file', '2024/06/brake-disc.png'),
(698, 1864, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1285;s:4:\"file\";s:22:\"2024/06/brake-disc.png\";s:8:\"filesize\";i:1076938;s:5:\"sizes\";a:28:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brake-disc-280x300.png\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62662;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"brake-disc-956x1024.png\";s:5:\"width\";i:956;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:500572;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brake-disc-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20234;}s:16:\"liquid-style1-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-700x450.png\";s:5:\"width\";i:700;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:242523;}s:16:\"liquid-style3-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-700x450.png\";s:5:\"width\";i:700;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:242523;}s:16:\"liquid-style4-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-320x320.png\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79382;}s:16:\"liquid-style5-lb\";a:5:{s:4:\"file\";s:23:\"brake-disc-1200x700.png\";s:5:\"width\";i:1200;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:464344;}s:16:\"liquid-style6-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-720x510.png\";s:5:\"width\";i:720;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:273860;}s:20:\"liquid-style6-alt-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-640x364.png\";s:5:\"width\";i:640;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187074;}s:16:\"liquid-style7-lb\";a:5:{s:4:\"file\";s:23:\"brake-disc-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:518401;}s:16:\"liquid-style9-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-370x470.png\";s:5:\"width\";i:370;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137180;}s:17:\"liquid-style13-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125380;}s:17:\"liquid-style16-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-720x400.png\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220886;}s:17:\"liquid-style18-lb\";a:5:{s:4:\"file\";s:23:\"brake-disc-800x1050.png\";s:5:\"width\";i:800;s:6:\"height\";i:1050;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:516066;}s:17:\"liquid-style19-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-700x560.png\";s:5:\"width\";i:700;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:286464;}s:17:\"liquid-style20-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-700x560.png\";s:5:\"width\";i:700;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:286464;}s:17:\"liquid-style21-lb\";a:5:{s:4:\"file\";s:22:\"brake-disc-720x480.png\";s:5:\"width\";i:720;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260701;}s:16:\"liquid-style3-sp\";a:5:{s:4:\"file\";s:22:\"brake-disc-760x760.png\";s:5:\"width\";i:760;s:6:\"height\";i:760;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:345300;}s:16:\"liquid-style3-pf\";a:5:{s:4:\"file\";s:22:\"brake-disc-640x600.png\";s:5:\"width\";i:640;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260156;}s:16:\"liquid-style4-pf\";a:5:{s:4:\"file\";s:24:\"brake-disc-1200x1000.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:598619;}s:16:\"liquid-style6-pf\";a:5:{s:4:\"file\";s:22:\"brake-disc-748x512.png\";s:5:\"width\";i:748;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:284699;}s:16:\"liquid-portfolio\";a:5:{s:4:\"file\";s:22:\"brake-disc-760x520.png\";s:5:\"width\";i:760;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:292190;}s:19:\"liquid-portfolio-sq\";a:5:{s:4:\"file\";s:22:\"brake-disc-760x640.png\";s:5:\"width\";i:760;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:337280;}s:23:\"liquid-portfolio-big-sq\";a:5:{s:4:\"file\";s:24:\"brake-disc-1200x1280.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:616466;}s:25:\"liquid-portfolio-portrait\";a:5:{s:4:\"file\";s:23:\"brake-disc-700x1000.png\";s:5:\"width\";i:700;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:463293;}s:21:\"liquid-portfolio-wide\";a:5:{s:4:\"file\";s:23:\"brake-disc-1200x590.png\";s:5:\"width\";i:1200;s:6:\"height\";i:590;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:393562;}s:19:\"liquid-packery-wide\";a:5:{s:4:\"file\";s:23:\"brake-disc-1140x740.png\";s:5:\"width\";i:1140;s:6:\"height\";i:740;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:536464;}s:23:\"liquid-packery-portrait\";a:5:{s:4:\"file\";s:22:\"brake-disc-540x740.png\";s:5:\"width\";i:540;s:6:\"height\";i:740;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:289367;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(737, 1866, '_wp_attached_file', '2024/06/air-freight.jpg'),
(738, 1866, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2363;s:6:\"height\";i:2363;s:4:\"file\";s:23:\"2024/06/air-freight.jpg\";s:8:\"filesize\";i:1159598;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"air-freight-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43595;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"air-freight-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124579;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"air-freight-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34797;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(768, 1867, '_wp_attached_file', '2024/06/1.png'),
(769, 1867, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:895;s:6:\"height\";i:605;s:4:\"file\";s:13:\"2024/06/1.png\";s:8:\"filesize\";i:413763;s:5:\"sizes\";a:22:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"1-300x203.png\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58257;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28112;}s:16:\"liquid-style1-lb\";a:5:{s:4:\"file\";s:13:\"1-700x450.png\";s:5:\"width\";i:700;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:258232;}s:16:\"liquid-style3-lb\";a:5:{s:4:\"file\";s:13:\"1-700x450.png\";s:5:\"width\";i:700;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:258232;}s:16:\"liquid-style4-lb\";a:5:{s:4:\"file\";s:13:\"1-320x320.png\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98577;}s:16:\"liquid-style6-lb\";a:5:{s:4:\"file\";s:13:\"1-720x510.png\";s:5:\"width\";i:720;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:295082;}s:20:\"liquid-style6-alt-lb\";a:5:{s:4:\"file\";s:13:\"1-640x364.png\";s:5:\"width\";i:640;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:219013;}s:16:\"liquid-style9-lb\";a:5:{s:4:\"file\";s:13:\"1-370x470.png\";s:5:\"width\";i:370;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141120;}s:17:\"liquid-style13-lb\";a:5:{s:4:\"file\";s:13:\"1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130374;}s:17:\"liquid-style16-lb\";a:5:{s:4:\"file\";s:13:\"1-720x400.png\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:271398;}s:17:\"liquid-style18-lb\";a:5:{s:4:\"file\";s:13:\"1-800x605.png\";s:5:\"width\";i:800;s:6:\"height\";i:605;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:417015;}s:17:\"liquid-style19-lb\";a:5:{s:4:\"file\";s:13:\"1-700x560.png\";s:5:\"width\";i:700;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:338365;}s:17:\"liquid-style20-lb\";a:5:{s:4:\"file\";s:13:\"1-700x560.png\";s:5:\"width\";i:700;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:338365;}s:17:\"liquid-style21-lb\";a:5:{s:4:\"file\";s:13:\"1-720x480.png\";s:5:\"width\";i:720;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272196;}s:16:\"liquid-style3-sp\";a:5:{s:4:\"file\";s:13:\"1-760x605.png\";s:5:\"width\";i:760;s:6:\"height\";i:605;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:409817;}s:16:\"liquid-style3-pf\";a:5:{s:4:\"file\";s:13:\"1-640x600.png\";s:5:\"width\";i:640;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:329997;}s:16:\"liquid-style6-pf\";a:5:{s:4:\"file\";s:13:\"1-748x512.png\";s:5:\"width\";i:748;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:298673;}s:16:\"liquid-portfolio\";a:5:{s:4:\"file\";s:13:\"1-760x520.png\";s:5:\"width\";i:760;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306994;}s:19:\"liquid-portfolio-sq\";a:5:{s:4:\"file\";s:13:\"1-760x605.png\";s:5:\"width\";i:760;s:6:\"height\";i:605;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:409817;}s:25:\"liquid-portfolio-portrait\";a:5:{s:4:\"file\";s:13:\"1-700x605.png\";s:5:\"width\";i:700;s:6:\"height\";i:605;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:387614;}s:21:\"liquid-portfolio-wide\";a:5:{s:4:\"file\";s:13:\"1-895x590.png\";s:5:\"width\";i:895;s:6:\"height\";i:590;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:424486;}s:23:\"liquid-packery-portrait\";a:5:{s:4:\"file\";s:13:\"1-540x605.png\";s:5:\"width\";i:540;s:6:\"height\";i:605;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:278785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(772, 872, '_edit_lock', '1741935985:1'),
(801, 1868, '_wp_attached_file', '2023/11/bg-2.jpg'),
(802, 1868, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:3308;s:6:\"height\";i:4678;s:4:\"file\";s:16:\"2023/11/bg-2.jpg\";s:8:\"filesize\";i:2705528;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"bg-2-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36668;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"bg-2-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110763;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"bg-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30984;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(803, 1869, '_elementor_edit_mode', 'builder'),
(804, 1869, '_elementor_template_type', 'container'),
(805, 1869, '_elementor_version', '3.17.3'),
(806, 1869, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(807, 1869, '_elementor_data', '[{\"id\":\"2847c7b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c963e70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/img-2.jpg\",\"id\":437,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"image_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"18938f8\"},{\"_id\":\"8f9b131\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a5d2ea6\"},{\"_id\":\"17fec47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"64bbeb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"aed038e\"},{\"_id\":\"e0ce8b8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ad6103c\"},{\"_id\":\"d129373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f60b60b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-4.svg\",\"id\":438},\"library\":\"svg\"},\"title\":\"Global shipment made easy.\",\"subtitle\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\"},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"Through a unique combination of engineering, construction and design<\\/strong> <\\/span>disciplines and expertise, Thanks to our advanced technological infrastructure and expert staff<\\/strong><\\/span>, such as supply chain management, warehousing, distribution, transportation.<\\/p>\",\"show_button\":\"yes\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=a054e68\"},\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"ib_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(809, 1870, '_elementor_edit_mode', 'builder'),
(810, 1870, '_elementor_template_type', 'container'),
(811, 1870, '_elementor_version', '3.17.3'),
(812, 1870, '_wp_page_template', 'default'),
(813, 1870, '_elementor_data', '[{\"id\":\"2847c7b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c963e70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2023\\/11\\/bg-2.jpg\",\"id\":1868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"image_border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"18938f8\"},{\"_id\":\"8f9b131\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a5d2ea6\"},{\"_id\":\"17fec47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"64bbeb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"aed038e\"},{\"_id\":\"e0ce8b8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ad6103c\"},{\"_id\":\"d129373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f60b60b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-4.svg\",\"id\":438},\"library\":\"svg\"},\"title\":\"J1-Brakes Brake Pads\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\"},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"Through a unique combination of engineering,\\u00a0construction and design<\\/strong>\\u00a0disciplines and expertise, Thanks to our advanced technological infrastructure and\\u00a0expert staff<\\/strong>, such as supply chain management, warehousing, distribution, transportation.<\\/p>\",\"show_button\":\"yes\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=a054e68\"},\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"ib_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"iconlist_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ib_button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(833, 1871, '_elementor_edit_mode', 'builder'),
(834, 1871, '_elementor_template_type', 'wp-page'),
(835, 1871, '_elementor_version', '3.18.3'),
(836, 1871, '_wp_page_template', 'default'),
(837, 1871, '_elementor_page_settings', 'a:1:{s:18:\"liquid_sidebar_one\";s:0:\"\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(838, 1871, '_elementor_data', '[{\"id\":\"92ac24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_size\":\"initial\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=6g-PETEzR74\",\"background_video_start\":35,\"background_video_end\":119,\"background_play_on_mobile\":\"yes\",\"background_video_fallback\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-1.jpg\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-jpg.webp\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e5fa930\"},{\"_id\":\"751cc7b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f35c56c\"},{\"_id\":\"e2d5bac\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"z_index\":2,\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"banner\",\"background_slideshow_slide_duration\":2500,\"background_slideshow_ken_burns\":\"yes\",\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"flex_wrap\":\"wrap\",\"background_xpos\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_section_color_scheme\":\"dark\",\"width_tablet_extra\":{\"unit\":\"px\",\"size\":997},\"width_tablet\":{\"unit\":\"px\",\"size\":604},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_tablet_extra\":\"initial\",\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"80fc763\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f08e23b\"},{\"_id\":\"c032df7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b403030\"},{\"_id\":\"e72e6b2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"_title\":\"Content\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f6b7bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexible\",\"_id\":\"6b6ba9d\"},{\"_id\":\"6935af4\",\"text\":\"Shipment.\",\"text_individual_styles\":\"yes\",\"item_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"item_color\":\"var(--e-global-color-dafbdf1)\"}],\"lqd_text_tag\":\"h1\",\"lqd_text_split_type\":\"words\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e087f51\"},{\"_id\":\"49acf98\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"61c5639\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},{\"_id\":\"d0c7a7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":12,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_trigger\":\"topParentContainer\",\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"90adaae\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Air freight terminals and facilities are subject to strict security measures and we take all necessary measures.\",\"_id\":\"2e692f1\"}],\"lqd_text_tag\":\"p\",\"lqd_text_split_type\":\"words\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d17b727\"},{\"_id\":\"0ff9abe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"feea344\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"02fd6fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_font_family\":\"Inter\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"lqd_text_typography_font_weight\":\"400\",\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"19a2aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"color_normal\":\"var(--e-global-color-a606f90)\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"hover_icon_custom_x\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"hover_icon_custom_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"color_hover\":\"var(--e-global-color-dafbdf1)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"c6f68d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"147a08f\"},{\"_id\":\"06f523a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"15024c0\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"4a2d58b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"animation\":\"bounceInUp\"},\"elements\":[{\"id\":\"2cb8f36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2024\\/02\\/container.webp\",\"id\":1752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b996601\"},{\"_id\":\"59105f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7453df2\"},{\"_id\":\"2f1fb80\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e96a98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"9bf0463\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"63a58c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Booking\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/logistics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"button_icon_effect_custom\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"694b412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"c82e678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track Shipment\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"5dd42bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a8df547\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Containers\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9509bc0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"1cc15a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/11\\/truck.png\",\"id\":967,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":-180.2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"_z_index\":0,\"lqd_parallax\":\"yes\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3f28982\",\"y\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},{\"_id\":\"77db96b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"16ea3cb\"},{\"_id\":\"a4cb738\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6c7d141\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"25\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a7cad1e\"},{\"_id\":\"b26f8d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4dadf0b\"},{\"_id\":\"12c357d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_aa_perspective\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"ec6b773\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Worlwide Shipping.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9bb9cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"8a124c4\"},{\"_id\":\"83e8f04\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\"},{\"_id\":\"86deeab\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"cd5a277\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"74a24c4\",\"elType\":\"widget\",\"settings\":{\"active_item\":0,\"items\":[{\"title\":\"Air Freight\",\"content\":\"Our Air Freight service provides fast, secure global delivery. Leveraging a network of top airlines, we handle all cargo sizes, catering to both urgent and regular needs. We tailor solutions to fit your requirements.<\\/p>\",\"_id\":\"e44a71e\"},{\"title\":\"Road Freight\",\"content\":\"
Our Road Freight service guarantees safe, efficient transport of your goods across the country. Utilizing a fleet of modern vehicles, we handle all types of cargo. We offer flexible scheduling, real-time tracking, and competitive pricing to meet your unique needs.<\\/p>\",\"_id\":\"4991663\"},{\"title\":\"International Shipment\",\"content\":\"
Navigating customs and regulations, our International Shipment service delivers your goods globally with speed and security. We offer real-time tracking and cost-effective solutions, ensuring a reliable, hassle-free shipping experience.<\\/p>\",\"_id\":\"889cd6a\"},{\"title\":\"Transportation\",\"content\":\"
We provide comprehensive Transportation services, ensuring your goods move seamlessly from origin to destination. Whether by road, air, or sea, our modern fleet and experienced team guarantee timely, safe delivery. Trust us for efficient, reliable logistics solutions.<\\/p>\",\"_id\":\"49da747\"},{\"title\":\"Ocean Freight\",\"content\":\"
Our Ocean Freight service offers cost-effective, eco-friendly solutions for shipping your goods across the globe. Leveraging partnerships with major carriers, we ensure secure, reliable sea transport.<\\/p>\",\"_id\":\"2e27ebd\"},{\"title\":\"Shipping and Logistics\",\"content\":\"
Navigating global transportation, our Shipping and Logistics services manage every step for efficient, secure delivery. We offer cost-effective, timely solutions, handling everything from planning to execution. Your end-to-end logistics needs are covered.<\\/p>\",\"_id\":\"d239b77\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b199bd5\"},{\"_id\":\"ebf85d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"878905b\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]}},{\"_id\":\"99f211e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_position\":\"next_to_title\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_icon_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.35\",\"isLinked\":false},\"trigger_icon_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_color\":\"var(--e-global-color-5b35d73)\",\"content_color_laptop\":\"var(--e-global-color-primary)\",\"content_color_tablet_extra\":\"var(--e-global-color-primary)\",\"content_color_tablet\":\"var(--e-global-color-primary)\",\"content_color_mobile\":\"var(--e-global-color-primary)\",\"content_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"enable_trigger_icon_visible_on_hover_active\":\"yes\",\"trigger_color_hover\":\"var(--e-global-color-primary)\",\"trigger_color_hover_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_hover_mobile\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-primary)\",\"trigger_color_active_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_active_mobile\":\"var(--e-global-color-primary)\",\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"20db145\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"055\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64058\"},{\"_id\":\"e91658e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"56a8ebe\"},{\"_id\":\"abaece2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12d8aa4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"477d729\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Freight Services.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9ac9959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ee1f92\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4993413\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"b8d4c97\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"_id\":\"58edfde\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"_id\":\"3b91aff\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/road-freight.jpg\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/air-freight.jpg\",\"id\":274,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"f872458\"},{\"_id\":\"6a19633\",\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/road-freight.jpg\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"8b110ba\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/air-freight.jpg\",\"id\":274,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"6421ea5\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"39db942\"},{\"_id\":\"2cb3ea3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a496456\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"28d36d4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"wrap_around\":\"yes\",\"cell_width\":{\"unit\":\"%\",\"size\":32.5,\"sizes\":[]},\"cell_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"cell_border_border\":\"solid\",\"cell_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cell_border_color\":\"var(--e-global-color-aa8e668)\",\"nav_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"40\",\"height\":\"40\"},\"nav_placement\":\"inside\",\"nav_align\":\"end\",\"nav_orientation_h\":\"end\",\"nav_offset_y\":{\"unit\":\"px\",\"size\":-120,\"sizes\":[]},\"nav_color\":\"var(--e-global-color-5b35d73)\",\"nav_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"nav_color_hover\":\"var(--e-global-color-a606f90)\",\"nav_background_hover_background\":\"color\",\"nav_background_hover_color\":\"var(--e-global-color-primary)\",\"cell_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"nav_align_mobile\":\"space-between\",\"nav_orientation_v_mobile\":\"bottom\",\"nav_offset_y_bottom_mobile\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"cell_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"nav_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"28ed06e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"741b764\"},{\"_id\":\"070d066\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"74a50a0\"},{\"_id\":\"8fb757f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41d2bc9\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Years of Expertise\",\"_id\":\"8ec2d88\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"lqd_text_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment\":\"center\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce393a8\"},{\"_id\":\"c11b390\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"899c390\"},{\"_id\":\"35703ef\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ee86930\",\"elType\":\"widget\",\"settings\":{\"count_to\":42,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"fb49132\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"594b906\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"33a9992\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"6455621\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"9ff3df9\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b579349\"},{\"_id\":\"37043a3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0edd1d1\"},{\"_id\":\"c90bfde\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"counter_typography_typography\":\"custom\",\"counter_typography_font_size\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"counter_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"counter_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"counter_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-counter\"},{\"id\":\"d8b7dee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/truck.png\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"fcc08fe\"},{\"_id\":\"b6d7a94\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e4d40f5\",\"x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"skewX\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"8a956db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"luminosity\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true},{\"id\":\"f0b5658\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2c07f6b\"},{\"_id\":\"fe1fd2e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dc6dba1\"},{\"_id\":\"49b152d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f95e41a\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Leading experience\",\"_id\":\"bfc9ea3\"}],\"lqd_text_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"12\",\"bottom\":\"6\",\"left\":\"12\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"184f163\"},{\"_id\":\"8c27125\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"466091a\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"b50b26f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=1c775b2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"302b4c7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Why Choose OceanExplorer?\",\"_id\":\"8129e42\"}],\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1c08060\"},{\"_id\":\"4c8f53a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"11c6148\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c1b09d3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=6b6095e\"},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.035,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"781f1b6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"90b08bb\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"534a177\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Transshipment Hubs\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"77247f6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"9065c96\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Reliable Schedules\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"94716ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"220b384\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Environmental Friendliness\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"4122f9e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Access to Remote Destinations\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"e7240f0\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"91079a6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Flexibility in Packaging\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"c6e6c96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3708cac\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Trade Routes Optimization\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"3acb219\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b2a84f7\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Long-term Contracts\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b47f267\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Suitable for Heavy Goods\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"30b8d9d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"85\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"88bc71a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/dots.png\",\"id\":409,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1260,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_z_index\":0,\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6666f9b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Comprehensive Solutions.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4cd5034\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6448929\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"8487355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"e90b1c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"flex_align_items\":\"flex-start\"},\"elements\":[{\"id\":\"2a376a8\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Flexible Shipment\",\"subtitle\":\"1\",\"description\":\"
Thanks to our advanced technological infrastructure and expert staff, such as supply chain management.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/explore.svg\",\"id\":388},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b4d006e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Ship Your Product\",\"subtitle\":\"2\",\"description\":\"
Thanks to our advanced technological infrastructure and expert staff, such as supply chain management.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/language.svg\",\"id\":383},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"c1e6c8b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Track Shipment\",\"subtitle\":\"3\",\"description\":\"
Thanks to our advanced technological infrastructure and expert staff, such as supply chain management.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/preliminary.svg\",\"id\":384},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"eb69693\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"84c1b68\"},{\"_id\":\"1161fac\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8c1aa83\"},{\"_id\":\"df23328\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"1234d07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Have a project in mind? You\\u2019re welcome to send a \",\"_id\":\"d8ee6cd\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"e70b313\",\"text\":\"message\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d1cfd77\",\"text\":\" or \",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"c4cf209\",\"text\":\"give us a call.\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"lqd_text_alignment\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"62f543e\"},{\"_id\":\"b5c81a1\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"beb4d2d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"724188f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_border_color\":\"#7070701F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_inview\":\"yes\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=7ebb86a\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f649c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"15\",\"bottom\":\"160\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a32aa81\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"item_content\":\"Stackable item #1\",\"_id\":\"e01fb82\",\"content_type\":\"el_template\",\"content_templates\":\"872\"},{\"item_content\":\"Stackable item #1\",\"content_type\":\"el_template\",\"content_templates\":\"1409\",\"_id\":\"b2006c7\"},{\"item_content\":\"Stackable item #1\",\"content_type\":\"el_template\",\"content_templates\":\"1410\",\"_id\":\"f7ef9d6\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca1f771\"},{\"_id\":\"a12f7ff\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"87e67dd\"},{\"_id\":\"168ea26\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width\":\"inherit\",\"adaptive_height\":\"yes\",\"slides_indicator_align\":\"start\",\"slides_indicator_placement_h\":\"end\",\"slides_indicator_offset_x_end\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"slides_indicator_offset_x_end_laptop\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slides_indicator_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slides_indicator_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"slides_indicator_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"slides_indicator_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"slides_indicator_slides_indicator_color_mobile\":\"#FFFFFF\",\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"lqd-stack\"}],\"isInner\":false},{\"id\":\"7ed2a14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"lqd_section_color_scheme\":\"dark\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/grid.svg\",\"id\":458,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-1.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"15\",\"bottom\":\"140\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4cb3832\"},{\"_id\":\"98839cc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"273c03e\"},{\"_id\":\"9944de4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"80dc830\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexibility in logistics.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=a054e68\"},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_text_alignment_mobile\":\"center\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"91fd90d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"17d0631\"},{\"_id\":\"c107796\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b1b630c\"},{\"_id\":\"5cf2685\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"50\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"2414b66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a9d9983\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon.svg\",\"id\":469},\"library\":\"svg\"},\"title\":\"Pickup and Delivery\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"27eeb55\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f437daf\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-1.svg\",\"id\":471},\"library\":\"svg\"},\"title\":\"Container Shipping\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"dd0ccc1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"d74c31f\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-2.svg\",\"id\":470},\"library\":\"svg\"},\"title\":\"Ocean Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"1b597a2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"606dc75\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-3.svg\",\"id\":468},\"library\":\"svg\"},\"title\":\"Air Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ead48e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c5a472a\"},{\"_id\":\"2d9feb2\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"02783dd\"},{\"_id\":\"4c7f96c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f7081fc\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-5.svg\",\"id\":577},\"library\":\"svg\"},\"title\":\"Track your shipment.\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
Through a unique combination of engineering, construction and design<\\/strong><\\/span> disciplines and expertise, Thanks to our advanced technological infrastructure and expert staff<\\/strong><\\/span>, such as supply.<\\/p>\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.95,\"sizes\":[]},\"title_tag\":\"h2\",\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"7ce2b7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/container.jpg\",\"id\":568,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca73a96\"},{\"_id\":\"3c396de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d85a765\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"31bf9ba\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"darken\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"70a71df\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Air Freight\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> <\\/span>chain management, warehousing, distribution, transportation.<\\/p>\",\"_id\":\"24977ac\"},{\"title\":\"Road Freight Services\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"9436b06\"},{\"title\":\"Operational Cost\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"1a17a1d\"},{\"title\":\"Warehouse Management\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"686025c\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"item_border_border\":\"solid\",\"item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"item_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"trigger_icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"44\",\"height\":\"44\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b2900e4\"},{\"_id\":\"9a5eef3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b16c393\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"6617d29\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_color\":\"var(--e-global-color-a606f90)\",\"trigger_icon_background_background\":\"color\",\"trigger_icon_background_color\":\"var(--e-global-color-primary)\",\"trigger_icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"content_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"bf500aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"5c6d8cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"min_height\":{\"unit\":\"custom\",\"size\":\"75%\",\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/patt.svg\",\"id\":596,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"z_index\":0},\"elements\":[],\"isInner\":true},{\"id\":\"ec851a1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Testimonials\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9c466e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dd98cd\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Hear from them\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"1f6f613\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f5a42de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"140\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":140},\"flex_gap_tablet\":{\"column\":\"45\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":45}},\"elements\":[{\"id\":\"8631dcd\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"_id\":\"d3e5cc2\",\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dde6fa5\"},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"76a933c\"}],\"wrap_around\":\"yes\",\"nav_buttons\":\"\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"draggable\":\"\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"},{\"id\":\"4490a06\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"_id\":\"d3e5cc2\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"2162383\"},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"587305d\"}],\"wrap_around\":\"yes\",\"connected_carousels\":\"testimonials-image\",\"nav_buttons\":\"\",\"pagination_dots\":\"yes\",\"dots_align\":\"start\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"dots_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"dots_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"10\",\"height\":\"10\"},\"dots_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_background_background\":\"color\",\"dots_background_color\":\"#00000026\",\"dots_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"dots_background_hover_background\":\"color\",\"dots_background_hover_color\":\"var(--e-global-color-5b35d73)\",\"dots_background_active_background\":\"color\",\"dots_background_active_color\":\"var(--e-global-color-5b35d73)\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"cell_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"05e9398\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"22dbd90\"},{\"_id\":\"023a6c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"264c000\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bae44b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"b5ba05e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-1.svg\",\"id\":606,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"c061a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-2.svg\",\"id\":607,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"4ca3a67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-3.svg\",\"id\":608,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"1afa352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-5.svg\",\"id\":609,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"97be2f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-6.svg\",\"id\":610,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9b4c21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-2.jpg\",\"id\":620,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a5667fa\"},{\"_id\":\"37e47ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7c8c71d\"},{\"_id\":\"f33dbb7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_section_color_scheme\":\"dark\"},\"elements\":[{\"id\":\"1cd6cd0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"45\",\"bottom\":\"30\",\"left\":\"45\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ecbe767\"},{\"_id\":\"c8908ca\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a32b990\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2c1bae8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3811199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"6002008\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Assets\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ab4d5fe\",\"elType\":\"widget\",\"settings\":{\"count_to\":301,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"4059851\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"dd1e506\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Destinations\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"c3cb2ab\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":598,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"3283fc5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"fa37ba1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Transit\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"e16e025\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":980,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"counter_suffix\":\"+\",\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"fe8475c\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Through a unique combination of\\nengineering, construction and design disciplines and expertise,\",\"_id\":\"051459d\"}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f9a373a\"},{\"_id\":\"01b43df\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7fe4b30\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bcb8ff8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0f23d7f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"883b62f\"},{\"_id\":\"596ce1b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dda72e1\"},{\"_id\":\"0418ff0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"2567264\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get instant freight quote.\",\"_id\":\"ddc11c4\"}],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5266ab9\"},{\"_id\":\"6b5d95c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"03f5047\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7919fc2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"3288cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Looking for partnership? Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"b33797a\"},{\"_id\":\"59f8e98\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"item_color\":\"var(--e-global-color-5b35d73)\"},{\"_id\":\"59f13da\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":38,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3e11117\"},{\"_id\":\"bf9de26\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c0b3a08\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7aa6680\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"881d033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b65dcca\"},{\"_id\":\"ba13e12\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2396245\"},{\"_id\":\"2a0bab6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"63e4e1b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"d1c0c07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Visit\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ba077c1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"290 Maryam Springs 260, Courbevoie, Paris, France\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"a6a01f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[{\"id\":\"6e2940e\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Call\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"dd36e02\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"+1 122 256 7890\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"df84ced\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"flex-end\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"e4b5bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Email\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d66591d\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"info@liquid-themes.com\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7116388\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"656***1703228922422\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4e73b46\"},{\"_id\":\"3d4c313\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d1ca094\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2a3e958\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(840, 1872, '_elementor_edit_mode', 'builder'),
(841, 1872, '_elementor_template_type', 'wp-page'),
(842, 1872, '_elementor_version', '3.18.3'),
(843, 1872, '_wp_page_template', 'default'),
(844, 1872, '_elementor_page_settings', 'a:1:{s:18:\"liquid_sidebar_one\";s:0:\"\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(845, 1872, '_elementor_data', '[{\"id\":\"92ac24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_size\":\"initial\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=6g-PETEzR74\",\"background_video_start\":35,\"background_video_end\":119,\"background_play_on_mobile\":\"yes\",\"background_video_fallback\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-1.jpg\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-jpg.webp\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e5fa930\"},{\"_id\":\"751cc7b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f35c56c\"},{\"_id\":\"e2d5bac\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"z_index\":2,\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"banner\",\"background_slideshow_slide_duration\":2500,\"background_slideshow_ken_burns\":\"yes\",\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"flex_wrap\":\"wrap\",\"background_xpos\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_section_color_scheme\":\"dark\",\"width_tablet_extra\":{\"unit\":\"px\",\"size\":997},\"width_tablet\":{\"unit\":\"px\",\"size\":604},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_tablet_extra\":\"initial\",\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"80fc763\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f08e23b\"},{\"_id\":\"c032df7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b403030\"},{\"_id\":\"e72e6b2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"_title\":\"Content\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f6b7bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexible\",\"_id\":\"6b6ba9d\"},{\"_id\":\"6935af4\",\"text\":\"Shipment.\",\"text_individual_styles\":\"yes\",\"item_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"item_color\":\"var(--e-global-color-dafbdf1)\"}],\"lqd_text_tag\":\"h1\",\"lqd_text_split_type\":\"words\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e087f51\"},{\"_id\":\"49acf98\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"61c5639\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},{\"_id\":\"d0c7a7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":12,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_trigger\":\"topParentContainer\",\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"90adaae\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Air freight terminals and facilities are subject to strict security measures and we take all necessary measures.\",\"_id\":\"2e692f1\"}],\"lqd_text_tag\":\"p\",\"lqd_text_split_type\":\"words\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d17b727\"},{\"_id\":\"0ff9abe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"feea344\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"02fd6fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_font_family\":\"Inter\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"lqd_text_typography_font_weight\":\"400\",\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"19a2aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"color_normal\":\"var(--e-global-color-a606f90)\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"hover_icon_custom_x\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"hover_icon_custom_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"color_hover\":\"var(--e-global-color-dafbdf1)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"c6f68d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"147a08f\"},{\"_id\":\"06f523a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"15024c0\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"4a2d58b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"animation\":\"bounceInUp\"},\"elements\":[{\"id\":\"2cb8f36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2024\\/02\\/container.webp\",\"id\":1752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b996601\"},{\"_id\":\"59105f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7453df2\"},{\"_id\":\"2f1fb80\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e96a98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"9bf0463\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"63a58c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Booking\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/logistics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"button_icon_effect_custom\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"694b412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"c82e678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track Shipment\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"5dd42bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a8df547\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Containers\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9509bc0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"1cc15a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/11\\/truck.png\",\"id\":967,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":-180.2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"_z_index\":0,\"lqd_parallax\":\"yes\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3f28982\",\"y\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},{\"_id\":\"77db96b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"16ea3cb\"},{\"_id\":\"a4cb738\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6c7d141\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"25\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a7cad1e\"},{\"_id\":\"b26f8d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4dadf0b\"},{\"_id\":\"12c357d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_aa_perspective\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"ec6b773\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Worlwide Shipping.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9bb9cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"8a124c4\"},{\"_id\":\"83e8f04\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\"},{\"_id\":\"86deeab\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"cd5a277\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"74a24c4\",\"elType\":\"widget\",\"settings\":{\"active_item\":0,\"items\":[{\"title\":\"Air Freight\",\"content\":\"Our Air Freight service provides fast, secure global delivery. Leveraging a network of top airlines, we handle all cargo sizes, catering to both urgent and regular needs. We tailor solutions to fit your requirements.<\\/p>\",\"_id\":\"e44a71e\"},{\"title\":\"Road Freight\",\"content\":\"
Our Road Freight service guarantees safe, efficient transport of your goods across the country. Utilizing a fleet of modern vehicles, we handle all types of cargo. We offer flexible scheduling, real-time tracking, and competitive pricing to meet your unique needs.<\\/p>\",\"_id\":\"4991663\"},{\"title\":\"International Shipment\",\"content\":\"
Navigating customs and regulations, our International Shipment service delivers your goods globally with speed and security. We offer real-time tracking and cost-effective solutions, ensuring a reliable, hassle-free shipping experience.<\\/p>\",\"_id\":\"889cd6a\"},{\"title\":\"Transportation\",\"content\":\"
We provide comprehensive Transportation services, ensuring your goods move seamlessly from origin to destination. Whether by road, air, or sea, our modern fleet and experienced team guarantee timely, safe delivery. Trust us for efficient, reliable logistics solutions.<\\/p>\",\"_id\":\"49da747\"},{\"title\":\"Ocean Freight\",\"content\":\"
Our Ocean Freight service offers cost-effective, eco-friendly solutions for shipping your goods across the globe. Leveraging partnerships with major carriers, we ensure secure, reliable sea transport.<\\/p>\",\"_id\":\"2e27ebd\"},{\"title\":\"Shipping and Logistics\",\"content\":\"
Navigating global transportation, our Shipping and Logistics services manage every step for efficient, secure delivery. We offer cost-effective, timely solutions, handling everything from planning to execution. Your end-to-end logistics needs are covered.<\\/p>\",\"_id\":\"d239b77\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b199bd5\"},{\"_id\":\"ebf85d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"878905b\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]}},{\"_id\":\"99f211e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_position\":\"next_to_title\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_icon_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.35\",\"isLinked\":false},\"trigger_icon_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_color\":\"var(--e-global-color-5b35d73)\",\"content_color_laptop\":\"var(--e-global-color-primary)\",\"content_color_tablet_extra\":\"var(--e-global-color-primary)\",\"content_color_tablet\":\"var(--e-global-color-primary)\",\"content_color_mobile\":\"var(--e-global-color-primary)\",\"content_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"enable_trigger_icon_visible_on_hover_active\":\"yes\",\"trigger_color_hover\":\"var(--e-global-color-primary)\",\"trigger_color_hover_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_hover_mobile\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-primary)\",\"trigger_color_active_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_active_mobile\":\"var(--e-global-color-primary)\",\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"20db145\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"055\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64058\"},{\"_id\":\"e91658e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"56a8ebe\"},{\"_id\":\"abaece2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12d8aa4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"477d729\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Freight Services.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9ac9959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ee1f92\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4993413\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"b8d4c97\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"_id\":\"58edfde\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"_id\":\"3b91aff\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/road-freight.jpg\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/air-freight.jpg\",\"id\":274,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"f872458\"},{\"_id\":\"6a19633\",\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/road-freight.jpg\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"8b110ba\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/air-freight.jpg\",\"id\":274,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"6421ea5\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"39db942\"},{\"_id\":\"2cb3ea3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a496456\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"28d36d4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"wrap_around\":\"yes\",\"cell_width\":{\"unit\":\"%\",\"size\":32.5,\"sizes\":[]},\"cell_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"cell_border_border\":\"solid\",\"cell_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cell_border_color\":\"var(--e-global-color-aa8e668)\",\"nav_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"40\",\"height\":\"40\"},\"nav_placement\":\"inside\",\"nav_align\":\"end\",\"nav_orientation_h\":\"end\",\"nav_offset_y\":{\"unit\":\"px\",\"size\":-120,\"sizes\":[]},\"nav_color\":\"var(--e-global-color-5b35d73)\",\"nav_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"nav_color_hover\":\"var(--e-global-color-a606f90)\",\"nav_background_hover_background\":\"color\",\"nav_background_hover_color\":\"var(--e-global-color-primary)\",\"cell_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"nav_align_mobile\":\"space-between\",\"nav_orientation_v_mobile\":\"bottom\",\"nav_offset_y_bottom_mobile\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"cell_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"nav_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"28ed06e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"741b764\"},{\"_id\":\"070d066\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"74a50a0\"},{\"_id\":\"8fb757f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41d2bc9\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Years of Expertise\",\"_id\":\"8ec2d88\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"lqd_text_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment\":\"center\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce393a8\"},{\"_id\":\"c11b390\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"899c390\"},{\"_id\":\"35703ef\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ee86930\",\"elType\":\"widget\",\"settings\":{\"count_to\":42,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"fb49132\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"594b906\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"33a9992\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"6455621\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"9ff3df9\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b579349\"},{\"_id\":\"37043a3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0edd1d1\"},{\"_id\":\"c90bfde\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"counter_typography_typography\":\"custom\",\"counter_typography_font_size\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"counter_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"counter_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"counter_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-counter\"},{\"id\":\"d8b7dee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/truck.png\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"fcc08fe\"},{\"_id\":\"b6d7a94\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e4d40f5\",\"x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"skewX\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"8a956db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"luminosity\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true},{\"id\":\"f0b5658\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2c07f6b\"},{\"_id\":\"fe1fd2e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dc6dba1\"},{\"_id\":\"49b152d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f95e41a\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Leading experience\",\"_id\":\"bfc9ea3\"}],\"lqd_text_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"12\",\"bottom\":\"6\",\"left\":\"12\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"184f163\"},{\"_id\":\"8c27125\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"466091a\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"b50b26f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=1c775b2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"302b4c7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Why Choose OceanExplorer?\",\"_id\":\"8129e42\"}],\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1c08060\"},{\"_id\":\"4c8f53a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"11c6148\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c1b09d3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=6b6095e\"},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.035,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"781f1b6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"90b08bb\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"534a177\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Transshipment Hubs\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"77247f6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"9065c96\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Reliable Schedules\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"94716ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"220b384\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Environmental Friendliness\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"4122f9e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Access to Remote Destinations\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"e7240f0\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"91079a6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Flexibility in Packaging\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"c6e6c96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3708cac\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Trade Routes Optimization\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"3acb219\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b2a84f7\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Long-term Contracts\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b47f267\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Suitable for Heavy Goods\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"30b8d9d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"85\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"88bc71a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/dots.png\",\"id\":409,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1260,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_z_index\":0,\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6666f9b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Comprehensive Solutions.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4cd5034\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6448929\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"8487355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"e90b1c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"flex_align_items\":\"flex-start\"},\"elements\":[{\"id\":\"2a376a8\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Flexible Shipment\",\"subtitle\":\"1\",\"description\":\"
Thanks to our advanced technological infrastructure and expert staff, such as supply chain management.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/explore.svg\",\"id\":388},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b4d006e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Ship Your Product\",\"subtitle\":\"2\",\"description\":\"
Thanks to our advanced technological infrastructure and expert staff, such as supply chain management.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/language.svg\",\"id\":383},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"c1e6c8b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Track Shipment\",\"subtitle\":\"3\",\"description\":\"
Thanks to our advanced technological infrastructure and expert staff, such as supply chain management.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/preliminary.svg\",\"id\":384},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"eb69693\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"84c1b68\"},{\"_id\":\"1161fac\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8c1aa83\"},{\"_id\":\"df23328\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"1234d07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Have a project in mind? You\\u2019re welcome to send a \",\"_id\":\"d8ee6cd\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"e70b313\",\"text\":\"message\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d1cfd77\",\"text\":\" or \",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"c4cf209\",\"text\":\"give us a call.\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"lqd_text_alignment\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"62f543e\"},{\"_id\":\"b5c81a1\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"beb4d2d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"724188f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_border_color\":\"#7070701F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_inview\":\"yes\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=7ebb86a\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f649c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"15\",\"bottom\":\"160\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a32aa81\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"item_content\":\"Stackable item #1\",\"_id\":\"e01fb82\",\"content_type\":\"el_template\",\"content_templates\":\"872\"},{\"item_content\":\"Stackable item #1\",\"content_type\":\"el_template\",\"content_templates\":\"1409\",\"_id\":\"b2006c7\"},{\"item_content\":\"Stackable item #1\",\"content_type\":\"el_template\",\"content_templates\":\"1410\",\"_id\":\"f7ef9d6\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca1f771\"},{\"_id\":\"a12f7ff\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"87e67dd\"},{\"_id\":\"168ea26\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width\":\"inherit\",\"adaptive_height\":\"yes\",\"slides_indicator_align\":\"start\",\"slides_indicator_placement_h\":\"end\",\"slides_indicator_offset_x_end\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"slides_indicator_offset_x_end_laptop\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slides_indicator_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slides_indicator_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"slides_indicator_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"slides_indicator_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"slides_indicator_slides_indicator_color_mobile\":\"#FFFFFF\",\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"lqd-stack\"}],\"isInner\":false},{\"id\":\"7ed2a14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"lqd_section_color_scheme\":\"dark\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/grid.svg\",\"id\":458,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-1.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"15\",\"bottom\":\"140\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4cb3832\"},{\"_id\":\"98839cc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"273c03e\"},{\"_id\":\"9944de4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"80dc830\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexibility in logistics.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=a054e68\"},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_text_alignment_mobile\":\"center\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"91fd90d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"17d0631\"},{\"_id\":\"c107796\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b1b630c\"},{\"_id\":\"5cf2685\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"50\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"2414b66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a9d9983\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon.svg\",\"id\":469},\"library\":\"svg\"},\"title\":\"Pickup and Delivery\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"27eeb55\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f437daf\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-1.svg\",\"id\":471},\"library\":\"svg\"},\"title\":\"Container Shipping\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"dd0ccc1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"d74c31f\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-2.svg\",\"id\":470},\"library\":\"svg\"},\"title\":\"Ocean Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"1b597a2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"606dc75\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-3.svg\",\"id\":468},\"library\":\"svg\"},\"title\":\"Air Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ead48e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c5a472a\"},{\"_id\":\"2d9feb2\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"02783dd\"},{\"_id\":\"4c7f96c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f7081fc\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-5.svg\",\"id\":577},\"library\":\"svg\"},\"title\":\"Track your shipment.\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
Through a unique combination of engineering, construction and design<\\/strong><\\/span> disciplines and expertise, Thanks to our advanced technological infrastructure and expert staff<\\/strong><\\/span>, such as supply.<\\/p>\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.95,\"sizes\":[]},\"title_tag\":\"h2\",\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"7ce2b7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/container.jpg\",\"id\":568,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca73a96\"},{\"_id\":\"3c396de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d85a765\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"31bf9ba\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"darken\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"70a71df\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Air Freight\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> <\\/span>chain management, warehousing, distribution, transportation.<\\/p>\",\"_id\":\"24977ac\"},{\"title\":\"Road Freight Services\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"9436b06\"},{\"title\":\"Operational Cost\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"1a17a1d\"},{\"title\":\"Warehouse Management\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"686025c\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"item_border_border\":\"solid\",\"item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"item_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"trigger_icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"44\",\"height\":\"44\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b2900e4\"},{\"_id\":\"9a5eef3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b16c393\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"6617d29\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_color\":\"var(--e-global-color-a606f90)\",\"trigger_icon_background_background\":\"color\",\"trigger_icon_background_color\":\"var(--e-global-color-primary)\",\"trigger_icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"content_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"bf500aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"5c6d8cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"min_height\":{\"unit\":\"custom\",\"size\":\"75%\",\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/patt.svg\",\"id\":596,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"z_index\":0},\"elements\":[],\"isInner\":true},{\"id\":\"ec851a1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Testimonials\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9c466e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dd98cd\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Hear from them\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"1f6f613\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f5a42de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"140\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":140},\"flex_gap_tablet\":{\"column\":\"45\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":45}},\"elements\":[{\"id\":\"8631dcd\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"_id\":\"d3e5cc2\",\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dde6fa5\"},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"76a933c\"}],\"wrap_around\":\"yes\",\"nav_buttons\":\"\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"draggable\":\"\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"},{\"id\":\"4490a06\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"_id\":\"d3e5cc2\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"2162383\"},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"587305d\"}],\"wrap_around\":\"yes\",\"connected_carousels\":\"testimonials-image\",\"nav_buttons\":\"\",\"pagination_dots\":\"yes\",\"dots_align\":\"start\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"dots_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"dots_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"10\",\"height\":\"10\"},\"dots_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_background_background\":\"color\",\"dots_background_color\":\"#00000026\",\"dots_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"dots_background_hover_background\":\"color\",\"dots_background_hover_color\":\"var(--e-global-color-5b35d73)\",\"dots_background_active_background\":\"color\",\"dots_background_active_color\":\"var(--e-global-color-5b35d73)\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"cell_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"05e9398\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"22dbd90\"},{\"_id\":\"023a6c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"264c000\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bae44b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"b5ba05e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-1.svg\",\"id\":606,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"c061a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-2.svg\",\"id\":607,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"4ca3a67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-3.svg\",\"id\":608,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"1afa352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-5.svg\",\"id\":609,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"97be2f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-6.svg\",\"id\":610,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9b4c21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-2.jpg\",\"id\":620,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a5667fa\"},{\"_id\":\"37e47ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7c8c71d\"},{\"_id\":\"f33dbb7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_section_color_scheme\":\"dark\"},\"elements\":[{\"id\":\"1cd6cd0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"45\",\"bottom\":\"30\",\"left\":\"45\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ecbe767\"},{\"_id\":\"c8908ca\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a32b990\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2c1bae8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3811199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"6002008\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Assets\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ab4d5fe\",\"elType\":\"widget\",\"settings\":{\"count_to\":301,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"4059851\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"dd1e506\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Destinations\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"c3cb2ab\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":598,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"3283fc5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"fa37ba1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Transit\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"e16e025\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":980,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"counter_suffix\":\"+\",\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"fe8475c\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Through a unique combination of\\nengineering, construction and design disciplines and expertise,\",\"_id\":\"051459d\"}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f9a373a\"},{\"_id\":\"01b43df\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7fe4b30\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bcb8ff8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0f23d7f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"883b62f\"},{\"_id\":\"596ce1b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dda72e1\"},{\"_id\":\"0418ff0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"2567264\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get instant freight quote.\",\"_id\":\"ddc11c4\"}],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5266ab9\"},{\"_id\":\"6b5d95c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"03f5047\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7919fc2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"3288cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Looking for partnership? Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"b33797a\"},{\"_id\":\"59f8e98\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"item_color\":\"var(--e-global-color-5b35d73)\"},{\"_id\":\"59f13da\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":38,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3e11117\"},{\"_id\":\"bf9de26\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c0b3a08\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7aa6680\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"881d033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b65dcca\"},{\"_id\":\"ba13e12\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2396245\"},{\"_id\":\"2a0bab6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"63e4e1b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"d1c0c07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Visit\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ba077c1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"290 Maryam Springs 260, Courbevoie, Paris, France\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"a6a01f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[{\"id\":\"6e2940e\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Call\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"dd36e02\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"+1 122 256 7890\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"df84ced\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"flex-end\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"e4b5bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Email\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d66591d\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"info@liquid-themes.com\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7116388\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"656***1703228922422\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4e73b46\"},{\"_id\":\"3d4c313\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d1ca094\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2a3e958\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(847, 1873, '_elementor_edit_mode', 'builder'),
(848, 1873, '_elementor_template_type', 'wp-page'),
(849, 1873, '_elementor_version', '3.18.3'),
(850, 1873, '_wp_page_template', 'default'),
(851, 1873, '_elementor_page_settings', 'a:1:{s:18:\"liquid_sidebar_one\";s:0:\"\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(852, 1873, '_elementor_data', '[{\"id\":\"92ac24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_size\":\"initial\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=6g-PETEzR74\",\"background_video_start\":35,\"background_video_end\":119,\"background_play_on_mobile\":\"yes\",\"background_video_fallback\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-1.jpg\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-jpg.webp\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e5fa930\"},{\"_id\":\"751cc7b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f35c56c\"},{\"_id\":\"e2d5bac\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"z_index\":2,\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"banner\",\"background_slideshow_slide_duration\":2500,\"background_slideshow_ken_burns\":\"yes\",\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"flex_wrap\":\"wrap\",\"background_xpos\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_section_color_scheme\":\"dark\",\"width_tablet_extra\":{\"unit\":\"px\",\"size\":997},\"width_tablet\":{\"unit\":\"px\",\"size\":604},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_tablet_extra\":\"initial\",\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"80fc763\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f08e23b\"},{\"_id\":\"c032df7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b403030\"},{\"_id\":\"e72e6b2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"_title\":\"Content\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f6b7bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexible\",\"_id\":\"6b6ba9d\"},{\"_id\":\"6935af4\",\"text\":\"Shipment.\",\"text_individual_styles\":\"yes\",\"item_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"item_color\":\"var(--e-global-color-dafbdf1)\"}],\"lqd_text_tag\":\"h1\",\"lqd_text_split_type\":\"words\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e087f51\"},{\"_id\":\"49acf98\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"61c5639\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},{\"_id\":\"d0c7a7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":12,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_trigger\":\"topParentContainer\",\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"90adaae\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Air freight terminals and facilities are subject to strict security measures and we take all necessary measures.\",\"_id\":\"2e692f1\"}],\"lqd_text_tag\":\"p\",\"lqd_text_split_type\":\"words\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d17b727\"},{\"_id\":\"0ff9abe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"feea344\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"02fd6fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_font_family\":\"Inter\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"lqd_text_typography_font_weight\":\"400\",\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"19a2aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"color_normal\":\"var(--e-global-color-a606f90)\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"hover_icon_custom_x\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"hover_icon_custom_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"color_hover\":\"var(--e-global-color-dafbdf1)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"c6f68d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"147a08f\"},{\"_id\":\"06f523a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"15024c0\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"4a2d58b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"animation\":\"bounceInUp\"},\"elements\":[{\"id\":\"2cb8f36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2024\\/02\\/container.webp\",\"id\":1752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b996601\"},{\"_id\":\"59105f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7453df2\"},{\"_id\":\"2f1fb80\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e96a98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"9bf0463\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"63a58c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Pads\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/logistics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"button_icon_effect_custom\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"694b412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"c82e678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Shoes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"5dd42bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a8df547\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore J1-Brakes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9509bc0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"1cc15a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/brake-disc.png\",\"id\":1864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":-180.2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"_z_index\":0,\"lqd_parallax\":\"yes\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3f28982\",\"y\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},{\"_id\":\"77db96b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"16ea3cb\"},{\"_id\":\"a4cb738\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6c7d141\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"25\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a7cad1e\"},{\"_id\":\"b26f8d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4dadf0b\"},{\"_id\":\"12c357d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_aa_perspective\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"ec6b773\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Brake\\n Solutions.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_text_typography_typography\":\"custom\",\"_element_width\":\"initial\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9bb9cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"8a124c4\"},{\"_id\":\"83e8f04\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\"},{\"_id\":\"86deeab\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"cd5a277\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"74a24c4\",\"elType\":\"widget\",\"settings\":{\"active_item\":0,\"items\":[{\"title\":\"Exceptional Friction\",\"content\":\"Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"e44a71e\"},{\"title\":\"Reduced Noise Emission\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"4991663\"},{\"title\":\"International Shipment\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"889cd6a\"},{\"title\":\"Rapid Response Time\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"49da747\"},{\"title\":\"Reliable Performance\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"2e27ebd\"},{\"title\":\"Shipping and Logistics\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"d239b77\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b199bd5\"},{\"_id\":\"ebf85d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"878905b\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]}},{\"_id\":\"99f211e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_position\":\"next_to_title\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_icon_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.35\",\"isLinked\":false},\"trigger_icon_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_color\":\"var(--e-global-color-5b35d73)\",\"content_color_laptop\":\"var(--e-global-color-primary)\",\"content_color_tablet_extra\":\"var(--e-global-color-primary)\",\"content_color_tablet\":\"var(--e-global-color-primary)\",\"content_color_mobile\":\"var(--e-global-color-primary)\",\"content_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"enable_trigger_icon_visible_on_hover_active\":\"yes\",\"trigger_color_hover\":\"var(--e-global-color-primary)\",\"trigger_color_hover_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_hover_mobile\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-primary)\",\"trigger_color_active_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_active_mobile\":\"var(--e-global-color-primary)\",\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"content\":\"
Our Ocean Freight service offers cost-effective, eco-friendly solutions for shipping your goods across the globe. Leveraging partnerships with major carriers, we ensure secure, reliable sea transport.<\\/p>\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"20db145\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"055\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64058\"},{\"_id\":\"e91658e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"56a8ebe\"},{\"_id\":\"abaece2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12d8aa4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"477d729\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Freight Services.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9ac9959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ee1f92\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4993413\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"b8d4c97\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"_id\":\"58edfde\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"_id\":\"3b91aff\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"f872458\"},{\"_id\":\"6a19633\",\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"8b110ba\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"6421ea5\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"39db942\"},{\"_id\":\"2cb3ea3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a496456\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"28d36d4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"wrap_around\":\"yes\",\"cell_width\":{\"unit\":\"%\",\"size\":32.5,\"sizes\":[]},\"cell_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"cell_border_border\":\"solid\",\"cell_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cell_border_color\":\"var(--e-global-color-aa8e668)\",\"nav_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"40\",\"height\":\"40\"},\"nav_placement\":\"inside\",\"nav_align\":\"end\",\"nav_orientation_h\":\"end\",\"nav_offset_y\":{\"unit\":\"px\",\"size\":-120,\"sizes\":[]},\"nav_color\":\"var(--e-global-color-5b35d73)\",\"nav_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"nav_color_hover\":\"var(--e-global-color-a606f90)\",\"nav_background_hover_background\":\"color\",\"nav_background_hover_color\":\"var(--e-global-color-primary)\",\"cell_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"nav_align_mobile\":\"space-between\",\"nav_orientation_v_mobile\":\"bottom\",\"nav_offset_y_bottom_mobile\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"cell_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"nav_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"28ed06e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"741b764\"},{\"_id\":\"070d066\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"74a50a0\"},{\"_id\":\"8fb757f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41d2bc9\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Years of Expertise\",\"_id\":\"8ec2d88\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"lqd_text_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment\":\"center\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce393a8\"},{\"_id\":\"c11b390\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"899c390\"},{\"_id\":\"35703ef\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ee86930\",\"elType\":\"widget\",\"settings\":{\"count_to\":42,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"fb49132\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"594b906\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"33a9992\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"6455621\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"9ff3df9\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b579349\"},{\"_id\":\"37043a3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0edd1d1\"},{\"_id\":\"c90bfde\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"counter_typography_typography\":\"custom\",\"counter_typography_font_size\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"counter_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"counter_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"counter_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-counter\"},{\"id\":\"d8b7dee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/1.png\",\"id\":1867,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"fcc08fe\"},{\"_id\":\"b6d7a94\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e4d40f5\",\"x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"skewX\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"8a956db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"luminosity\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true},{\"id\":\"f0b5658\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2c07f6b\"},{\"_id\":\"fe1fd2e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dc6dba1\"},{\"_id\":\"49b152d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f95e41a\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Leading experience\",\"_id\":\"bfc9ea3\"}],\"lqd_text_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"12\",\"bottom\":\"6\",\"left\":\"12\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"184f163\"},{\"_id\":\"8c27125\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"466091a\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"b50b26f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=1c775b2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"302b4c7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Why Choose J1-Brakes?\",\"_id\":\"8129e42\"}],\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1c08060\"},{\"_id\":\"4c8f53a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"11c6148\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c1b09d3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=6b6095e\"},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.035,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"781f1b6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"90b08bb\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"534a177\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Transshipment Hubs\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"77247f6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"9065c96\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Reliable Schedules\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"94716ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"220b384\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Environmental Friendliness\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"4122f9e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Access to Remote Destinations\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"e7240f0\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"91079a6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Flexibility in Packaging\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"c6e6c96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3708cac\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Trade Routes Optimization\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"3acb219\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b2a84f7\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Long-term Contracts\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b47f267\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Suitable for Heavy Goods\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"30b8d9d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"85\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"88bc71a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/dots.png\",\"id\":409,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1260,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_z_index\":0,\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6666f9b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Top-Quality Brake Solutions\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4cd5034\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6448929\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"8487355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"e90b1c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"flex_align_items\":\"flex-start\"},\"elements\":[{\"id\":\"2a376a8\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Premium Material\",\"subtitle\":\"1\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/explore.svg\",\"id\":388},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b4d006e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Superior Performance\",\"subtitle\":\"2\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/language.svg\",\"id\":383},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"c1e6c8b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Long-lasting Durability\",\"subtitle\":\"3\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/preliminary.svg\",\"id\":384},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"eb69693\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"84c1b68\"},{\"_id\":\"1161fac\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8c1aa83\"},{\"_id\":\"df23328\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"1234d07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Have a project in mind? You\\u2019re welcome to send a \",\"_id\":\"d8ee6cd\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"e70b313\",\"text\":\"message\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d1cfd77\",\"text\":\" or \",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"c4cf209\",\"text\":\"give us a call.\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"lqd_text_alignment\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"62f543e\"},{\"_id\":\"b5c81a1\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"beb4d2d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"724188f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_border_color\":\"#7070701F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_inview\":\"yes\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=7ebb86a\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f649c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"15\",\"bottom\":\"160\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a32aa81\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"item_content\":\"Stackable item #1\",\"_id\":\"e01fb82\",\"content_type\":\"el_template\",\"content_templates\":\"872\"},{\"item_content\":\"Stackable item #1\",\"content_type\":\"el_template\",\"content_templates\":\"1409\",\"_id\":\"b2006c7\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca1f771\"},{\"_id\":\"a12f7ff\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"87e67dd\"},{\"_id\":\"168ea26\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width\":\"inherit\",\"adaptive_height\":\"yes\",\"slides_indicator_align\":\"start\",\"slides_indicator_placement_h\":\"end\",\"slides_indicator_offset_x_end\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"slides_indicator_offset_x_end_laptop\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slides_indicator_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slides_indicator_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"slides_indicator_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"slides_indicator_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"slides_indicator_slides_indicator_color_mobile\":\"#FFFFFF\",\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"lqd-stack\"}],\"isInner\":false},{\"id\":\"7ed2a14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"lqd_section_color_scheme\":\"dark\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/grid.svg\",\"id\":458,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-1.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"15\",\"bottom\":\"140\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4cb3832\"},{\"_id\":\"98839cc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"273c03e\"},{\"_id\":\"9944de4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"80dc830\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexibility in logistics.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=a054e68\"},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_text_alignment_mobile\":\"center\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"91fd90d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"17d0631\"},{\"_id\":\"c107796\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b1b630c\"},{\"_id\":\"5cf2685\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"50\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"2414b66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a9d9983\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon.svg\",\"id\":469},\"library\":\"svg\"},\"title\":\"Pickup and Delivery\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"27eeb55\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f437daf\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-1.svg\",\"id\":471},\"library\":\"svg\"},\"title\":\"Container Shipping\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"dd0ccc1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"d74c31f\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-2.svg\",\"id\":470},\"library\":\"svg\"},\"title\":\"Ocean Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"1b597a2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"606dc75\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-3.svg\",\"id\":468},\"library\":\"svg\"},\"title\":\"Air Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ead48e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c5a472a\"},{\"_id\":\"2d9feb2\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"02783dd\"},{\"_id\":\"4c7f96c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f7081fc\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-5.svg\",\"id\":577},\"library\":\"svg\"},\"title\":\"Track your shipment.\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
Through a unique combination of engineering, construction and design<\\/strong><\\/span> disciplines and expertise, Thanks to our advanced technological infrastructure and expert staff<\\/strong><\\/span>, such as supply.<\\/p>\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.95,\"sizes\":[]},\"title_tag\":\"h2\",\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"7ce2b7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/container.jpg\",\"id\":568,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca73a96\"},{\"_id\":\"3c396de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d85a765\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"31bf9ba\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"darken\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"70a71df\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Air Freight\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> <\\/span>chain management, warehousing, distribution, transportation.<\\/p>\",\"_id\":\"24977ac\"},{\"title\":\"Road Freight Services\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"9436b06\"},{\"title\":\"Operational Cost\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"1a17a1d\"},{\"title\":\"Warehouse Management\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"686025c\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"item_border_border\":\"solid\",\"item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"item_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"trigger_icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"44\",\"height\":\"44\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b2900e4\"},{\"_id\":\"9a5eef3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b16c393\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"6617d29\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_color\":\"var(--e-global-color-a606f90)\",\"trigger_icon_background_background\":\"color\",\"trigger_icon_background_color\":\"var(--e-global-color-primary)\",\"trigger_icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"content_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"bf500aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"5c6d8cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"min_height\":{\"unit\":\"custom\",\"size\":\"75%\",\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/patt.svg\",\"id\":596,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"z_index\":0},\"elements\":[],\"isInner\":true},{\"id\":\"ec851a1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Testimonials\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9c466e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dd98cd\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Hear from them\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"1f6f613\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f5a42de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"140\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":140},\"flex_gap_tablet\":{\"column\":\"45\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":45}},\"elements\":[{\"id\":\"8631dcd\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"_id\":\"d3e5cc2\",\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dde6fa5\"},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"76a933c\"}],\"wrap_around\":\"yes\",\"nav_buttons\":\"\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"draggable\":\"\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"},{\"id\":\"4490a06\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"_id\":\"d3e5cc2\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"2162383\"},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"587305d\"}],\"wrap_around\":\"yes\",\"connected_carousels\":\"testimonials-image\",\"nav_buttons\":\"\",\"pagination_dots\":\"yes\",\"dots_align\":\"start\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"dots_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"dots_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"10\",\"height\":\"10\"},\"dots_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_background_background\":\"color\",\"dots_background_color\":\"#00000026\",\"dots_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"dots_background_hover_background\":\"color\",\"dots_background_hover_color\":\"var(--e-global-color-5b35d73)\",\"dots_background_active_background\":\"color\",\"dots_background_active_color\":\"var(--e-global-color-5b35d73)\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"cell_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"05e9398\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"22dbd90\"},{\"_id\":\"023a6c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"264c000\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bae44b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"b5ba05e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-1.svg\",\"id\":606,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"c061a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-2.svg\",\"id\":607,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"4ca3a67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-3.svg\",\"id\":608,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"1afa352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-5.svg\",\"id\":609,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"97be2f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-6.svg\",\"id\":610,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9b4c21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-2.jpg\",\"id\":620,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a5667fa\"},{\"_id\":\"37e47ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7c8c71d\"},{\"_id\":\"f33dbb7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_section_color_scheme\":\"dark\"},\"elements\":[{\"id\":\"1cd6cd0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"45\",\"bottom\":\"30\",\"left\":\"45\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ecbe767\"},{\"_id\":\"c8908ca\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a32b990\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2c1bae8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3811199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"6002008\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Assets\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ab4d5fe\",\"elType\":\"widget\",\"settings\":{\"count_to\":301,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"4059851\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"dd1e506\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Destinations\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"c3cb2ab\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":598,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"3283fc5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"fa37ba1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Transit\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"e16e025\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":980,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"counter_suffix\":\"+\",\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"fe8475c\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Through a unique combination of\\nengineering, construction and design disciplines and expertise,\",\"_id\":\"051459d\"}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f9a373a\"},{\"_id\":\"01b43df\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7fe4b30\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bcb8ff8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0f23d7f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"883b62f\"},{\"_id\":\"596ce1b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dda72e1\"},{\"_id\":\"0418ff0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"2567264\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get instant freight quote.\",\"_id\":\"ddc11c4\"}],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5266ab9\"},{\"_id\":\"6b5d95c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"03f5047\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7919fc2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"3288cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Looking for partnership? Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"b33797a\"},{\"_id\":\"59f8e98\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"item_color\":\"var(--e-global-color-5b35d73)\"},{\"_id\":\"59f13da\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":38,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3e11117\"},{\"_id\":\"bf9de26\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c0b3a08\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7aa6680\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"881d033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b65dcca\"},{\"_id\":\"ba13e12\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2396245\"},{\"_id\":\"2a0bab6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"63e4e1b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"d1c0c07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Visit\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ba077c1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"290 Maryam Springs 260, Courbevoie, Paris, France\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"a6a01f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[{\"id\":\"6e2940e\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Call\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"dd36e02\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"+1 122 256 7890\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"df84ced\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"flex-end\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"e4b5bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Email\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d66591d\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"info@liquid-themes.com\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7116388\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"656***1703228922422\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4e73b46\"},{\"_id\":\"3d4c313\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d1ca094\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2a3e958\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(856, 1874, '_elementor_edit_mode', 'builder'),
(857, 1874, '_elementor_template_type', 'wp-page'),
(858, 1874, '_elementor_version', '3.21.8'),
(859, 1874, '_wp_page_template', 'default'),
(860, 1874, '_elementor_page_settings', 'a:1:{s:18:\"liquid_sidebar_one\";s:0:\"\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(861, 1874, '_elementor_data', '[{\"id\":\"92ac24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_size\":\"initial\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=6g-PETEzR74\",\"background_video_start\":35,\"background_video_end\":119,\"background_play_on_mobile\":\"yes\",\"background_video_fallback\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-1.jpg\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-jpg.webp\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e5fa930\"},{\"_id\":\"751cc7b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f35c56c\"},{\"_id\":\"e2d5bac\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"z_index\":2,\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"banner\",\"background_slideshow_slide_duration\":2500,\"background_slideshow_ken_burns\":\"yes\",\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"flex_wrap\":\"wrap\",\"background_xpos\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_section_color_scheme\":\"dark\",\"width_tablet_extra\":{\"unit\":\"px\",\"size\":997},\"width_tablet\":{\"unit\":\"px\",\"size\":604},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_tablet_extra\":\"initial\",\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"80fc763\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f08e23b\"},{\"_id\":\"c032df7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b403030\"},{\"_id\":\"e72e6b2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"_title\":\"Content\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f6b7bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexible\",\"_id\":\"6b6ba9d\"},{\"_id\":\"6935af4\",\"text\":\"Shipment.\",\"text_individual_styles\":\"yes\",\"item_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"item_color\":\"var(--e-global-color-dafbdf1)\"}],\"lqd_text_tag\":\"h1\",\"lqd_text_split_type\":\"words\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e087f51\"},{\"_id\":\"49acf98\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"61c5639\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},{\"_id\":\"d0c7a7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":12,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_trigger\":\"topParentContainer\",\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"90adaae\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Air freight terminals and facilities are subject to strict security measures and we take all necessary measures.\",\"_id\":\"2e692f1\"}],\"lqd_text_tag\":\"p\",\"lqd_text_split_type\":\"words\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d17b727\"},{\"_id\":\"0ff9abe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"feea344\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"02fd6fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_font_family\":\"Inter\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"lqd_text_typography_font_weight\":\"400\",\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"19a2aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"color_normal\":\"var(--e-global-color-a606f90)\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"hover_icon_custom_x\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"hover_icon_custom_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"color_hover\":\"var(--e-global-color-dafbdf1)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"c6f68d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"147a08f\"},{\"_id\":\"06f523a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"15024c0\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"4a2d58b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"animation\":\"bounceInUp\"},\"elements\":[{\"id\":\"2cb8f36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2024\\/02\\/container.webp\",\"id\":1752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b996601\"},{\"_id\":\"59105f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7453df2\"},{\"_id\":\"2f1fb80\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e96a98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"9bf0463\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"63a58c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Pads\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/logistics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"button_icon_effect_custom\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"694b412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"c82e678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Shoes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"5dd42bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a8df547\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore J1-Brakes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9509bc0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"1cc15a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/brake-disc.png\",\"id\":1864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":-180.2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"_z_index\":0,\"lqd_parallax\":\"yes\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3f28982\",\"y\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},{\"_id\":\"77db96b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"16ea3cb\"},{\"_id\":\"a4cb738\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6c7d141\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"25\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a7cad1e\"},{\"_id\":\"b26f8d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4dadf0b\"},{\"_id\":\"12c357d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_aa_perspective\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"ec6b773\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Brake\\n Solutions.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_text_typography_typography\":\"custom\",\"_element_width\":\"initial\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9bb9cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"8a124c4\"},{\"_id\":\"83e8f04\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\"},{\"_id\":\"86deeab\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"cd5a277\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"74a24c4\",\"elType\":\"widget\",\"settings\":{\"active_item\":0,\"items\":[{\"title\":\"Exceptional Friction\",\"content\":\"Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"e44a71e\"},{\"title\":\"Reduced Noise Emission\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"4991663\"},{\"title\":\"International Shipment\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"889cd6a\"},{\"title\":\"Rapid Response Time\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"49da747\"},{\"title\":\"Reliable Performance\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"2e27ebd\"},{\"title\":\"Shipping and Logistics\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"d239b77\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b199bd5\"},{\"_id\":\"ebf85d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"878905b\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]}},{\"_id\":\"99f211e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_position\":\"next_to_title\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_icon_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.35\",\"isLinked\":false},\"trigger_icon_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_color\":\"var(--e-global-color-5b35d73)\",\"content_color_laptop\":\"var(--e-global-color-primary)\",\"content_color_tablet_extra\":\"var(--e-global-color-primary)\",\"content_color_tablet\":\"var(--e-global-color-primary)\",\"content_color_mobile\":\"var(--e-global-color-primary)\",\"content_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"enable_trigger_icon_visible_on_hover_active\":\"yes\",\"trigger_color_hover\":\"var(--e-global-color-primary)\",\"trigger_color_hover_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_hover_mobile\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-primary)\",\"trigger_color_active_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_active_mobile\":\"var(--e-global-color-primary)\",\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"content\":\"
Our Ocean Freight service offers cost-effective, eco-friendly solutions for shipping your goods across the globe. Leveraging partnerships with major carriers, we ensure secure, reliable sea transport.<\\/p>\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"20db145\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"055\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64058\"},{\"_id\":\"e91658e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"56a8ebe\"},{\"_id\":\"abaece2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12d8aa4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"477d729\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Freight Services.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9ac9959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ee1f92\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4993413\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"b8d4c97\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"_id\":\"58edfde\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"_id\":\"3b91aff\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"f872458\"},{\"_id\":\"6a19633\",\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"8b110ba\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"6421ea5\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"39db942\"},{\"_id\":\"2cb3ea3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a496456\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"28d36d4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"wrap_around\":\"yes\",\"cell_width\":{\"unit\":\"%\",\"size\":32.5,\"sizes\":[]},\"cell_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"cell_border_border\":\"solid\",\"cell_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cell_border_color\":\"var(--e-global-color-aa8e668)\",\"nav_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"40\",\"height\":\"40\"},\"nav_placement\":\"inside\",\"nav_align\":\"end\",\"nav_orientation_h\":\"end\",\"nav_offset_y\":{\"unit\":\"px\",\"size\":-120,\"sizes\":[]},\"nav_color\":\"var(--e-global-color-5b35d73)\",\"nav_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"nav_color_hover\":\"var(--e-global-color-a606f90)\",\"nav_background_hover_background\":\"color\",\"nav_background_hover_color\":\"var(--e-global-color-primary)\",\"cell_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"nav_align_mobile\":\"space-between\",\"nav_orientation_v_mobile\":\"bottom\",\"nav_offset_y_bottom_mobile\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"cell_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"nav_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"28ed06e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"741b764\"},{\"_id\":\"070d066\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"74a50a0\"},{\"_id\":\"8fb757f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41d2bc9\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Years of Expertise\",\"_id\":\"8ec2d88\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"lqd_text_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment\":\"center\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce393a8\"},{\"_id\":\"c11b390\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"899c390\"},{\"_id\":\"35703ef\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ee86930\",\"elType\":\"widget\",\"settings\":{\"count_to\":42,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"fb49132\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"594b906\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"33a9992\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"6455621\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"9ff3df9\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b579349\"},{\"_id\":\"37043a3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0edd1d1\"},{\"_id\":\"c90bfde\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"counter_typography_typography\":\"custom\",\"counter_typography_font_size\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"counter_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"counter_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"counter_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-counter\"},{\"id\":\"d8b7dee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/1.png\",\"id\":1867,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"fcc08fe\"},{\"_id\":\"b6d7a94\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e4d40f5\",\"x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"skewX\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"8a956db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"luminosity\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true},{\"id\":\"f0b5658\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2c07f6b\"},{\"_id\":\"fe1fd2e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dc6dba1\"},{\"_id\":\"49b152d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f95e41a\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Leading experience\",\"_id\":\"bfc9ea3\"}],\"lqd_text_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"12\",\"bottom\":\"6\",\"left\":\"12\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"184f163\"},{\"_id\":\"8c27125\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"466091a\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"b50b26f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=1c775b2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"302b4c7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Why Choose J1-Brakes?\",\"_id\":\"8129e42\"}],\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1c08060\"},{\"_id\":\"4c8f53a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"11c6148\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c1b09d3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=6b6095e\"},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.035,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"781f1b6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"90b08bb\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"534a177\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Transshipment Hubs\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"77247f6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"9065c96\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Reliable Schedules\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"94716ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"220b384\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Environmental Friendliness\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"4122f9e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Access to Remote Destinations\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"e7240f0\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"91079a6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Flexibility in Packaging\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"c6e6c96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3708cac\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Trade Routes Optimization\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"3acb219\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b2a84f7\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Long-term Contracts\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b47f267\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Suitable for Heavy Goods\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"30b8d9d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"85\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"88bc71a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/dots.png\",\"id\":409,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1260,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_z_index\":0,\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6666f9b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Top-Quality Brake Solutions\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4cd5034\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6448929\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"8487355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"e90b1c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"flex_align_items\":\"flex-start\"},\"elements\":[{\"id\":\"2a376a8\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Premium Material\",\"subtitle\":\"1\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/explore.svg\",\"id\":388},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b4d006e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Superior Performance\",\"subtitle\":\"2\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/language.svg\",\"id\":383},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"c1e6c8b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Long-lasting Durability\",\"subtitle\":\"3\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/preliminary.svg\",\"id\":384},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"eb69693\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"84c1b68\"},{\"_id\":\"1161fac\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8c1aa83\"},{\"_id\":\"df23328\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"1234d07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Have a project in mind? You\\u2019re welcome to send a \",\"_id\":\"d8ee6cd\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"e70b313\",\"text\":\"message\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d1cfd77\",\"text\":\" or \",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"c4cf209\",\"text\":\"give us a call.\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"lqd_text_alignment\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"62f543e\"},{\"_id\":\"b5c81a1\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"beb4d2d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"724188f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_border_color\":\"#7070701F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_inview\":\"yes\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=7ebb86a\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f649c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"15\",\"bottom\":\"160\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a32aa81\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"item_content\":\"Stackable item #1\",\"_id\":\"e01fb82\",\"content_type\":\"el_template\",\"content_templates\":\"872\"},{\"item_content\":\"Stackable item #1\",\"content_type\":\"el_template\",\"content_templates\":\"1409\",\"_id\":\"b2006c7\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca1f771\"},{\"_id\":\"a12f7ff\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"87e67dd\"},{\"_id\":\"168ea26\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width\":\"inherit\",\"adaptive_height\":\"yes\",\"slides_indicator_align\":\"start\",\"slides_indicator_placement_h\":\"end\",\"slides_indicator_offset_x_end\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"slides_indicator_offset_x_end_laptop\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slides_indicator_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slides_indicator_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"slides_indicator_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"slides_indicator_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"slides_indicator_slides_indicator_color_mobile\":\"#FFFFFF\",\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"lqd-stack\"}],\"isInner\":false},{\"id\":\"7ed2a14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"lqd_section_color_scheme\":\"dark\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/grid.svg\",\"id\":458,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-1.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"15\",\"bottom\":\"140\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4cb3832\"},{\"_id\":\"98839cc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"273c03e\"},{\"_id\":\"9944de4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"80dc830\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexibility in logistics.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=a054e68\"},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_text_alignment_mobile\":\"center\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"91fd90d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"17d0631\"},{\"_id\":\"c107796\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b1b630c\"},{\"_id\":\"5cf2685\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"50\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"2414b66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a9d9983\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon.svg\",\"id\":469},\"library\":\"svg\"},\"title\":\"Pickup and Delivery\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"27eeb55\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f437daf\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-1.svg\",\"id\":471},\"library\":\"svg\"},\"title\":\"Container Shipping\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"dd0ccc1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"d74c31f\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-2.svg\",\"id\":470},\"library\":\"svg\"},\"title\":\"Ocean Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"1b597a2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"606dc75\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-3.svg\",\"id\":468},\"library\":\"svg\"},\"title\":\"Air Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ead48e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c5a472a\"},{\"_id\":\"2d9feb2\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"02783dd\"},{\"_id\":\"4c7f96c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f7081fc\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-5.svg\",\"id\":577},\"library\":\"svg\"},\"title\":\"Track your shipment.\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
Through a unique combination of engineering, construction and design<\\/strong><\\/span> disciplines and expertise, Thanks to our advanced technological infrastructure and expert staff<\\/strong><\\/span>, such as supply.<\\/p>\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.95,\"sizes\":[]},\"title_tag\":\"h2\",\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"7ce2b7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/container.jpg\",\"id\":568,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca73a96\"},{\"_id\":\"3c396de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d85a765\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"31bf9ba\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"darken\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"70a71df\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Air Freight\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> <\\/span>chain management, warehousing, distribution, transportation.<\\/p>\",\"_id\":\"24977ac\"},{\"title\":\"Road Freight Services\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"9436b06\"},{\"title\":\"Operational Cost\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"1a17a1d\"},{\"title\":\"Warehouse Management\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"686025c\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"item_border_border\":\"solid\",\"item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"item_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"trigger_icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"44\",\"height\":\"44\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b2900e4\"},{\"_id\":\"9a5eef3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b16c393\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"6617d29\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_color\":\"var(--e-global-color-a606f90)\",\"trigger_icon_background_background\":\"color\",\"trigger_icon_background_color\":\"var(--e-global-color-primary)\",\"trigger_icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"content_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"bf500aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"5c6d8cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"min_height\":{\"unit\":\"custom\",\"size\":\"75%\",\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/patt.svg\",\"id\":596,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"z_index\":0},\"elements\":[],\"isInner\":true},{\"id\":\"ec851a1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Testimonials\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9c466e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dd98cd\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Hear from them\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"1f6f613\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f5a42de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"140\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":140},\"flex_gap_tablet\":{\"column\":\"45\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":45}},\"elements\":[{\"id\":\"8631dcd\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"_id\":\"d3e5cc2\",\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dde6fa5\"},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"76a933c\"}],\"wrap_around\":\"yes\",\"nav_buttons\":\"\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"draggable\":\"\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"},{\"id\":\"4490a06\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"_id\":\"d3e5cc2\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"2162383\"},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"587305d\"}],\"wrap_around\":\"yes\",\"connected_carousels\":\"testimonials-image\",\"nav_buttons\":\"\",\"pagination_dots\":\"yes\",\"dots_align\":\"start\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"dots_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"dots_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"10\",\"height\":\"10\"},\"dots_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_background_background\":\"color\",\"dots_background_color\":\"#00000026\",\"dots_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"dots_background_hover_background\":\"color\",\"dots_background_hover_color\":\"var(--e-global-color-5b35d73)\",\"dots_background_active_background\":\"color\",\"dots_background_active_color\":\"var(--e-global-color-5b35d73)\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"cell_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"05e9398\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"22dbd90\"},{\"_id\":\"023a6c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"264c000\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bae44b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"b5ba05e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-1.svg\",\"id\":606,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"c061a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-2.svg\",\"id\":607,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"4ca3a67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-3.svg\",\"id\":608,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"1afa352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-5.svg\",\"id\":609,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"97be2f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-6.svg\",\"id\":610,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9b4c21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-2.jpg\",\"id\":620,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a5667fa\"},{\"_id\":\"37e47ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7c8c71d\"},{\"_id\":\"f33dbb7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_section_color_scheme\":\"dark\"},\"elements\":[{\"id\":\"1cd6cd0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"45\",\"bottom\":\"30\",\"left\":\"45\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ecbe767\"},{\"_id\":\"c8908ca\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a32b990\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2c1bae8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3811199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"6002008\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Assets\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ab4d5fe\",\"elType\":\"widget\",\"settings\":{\"count_to\":301,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"4059851\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"dd1e506\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Destinations\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"c3cb2ab\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":598,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"3283fc5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"fa37ba1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Transit\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"e16e025\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":980,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"counter_suffix\":\"+\",\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"fe8475c\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Through a unique combination of\\nengineering, construction and design disciplines and expertise,\",\"_id\":\"051459d\"}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f9a373a\"},{\"_id\":\"01b43df\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7fe4b30\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bcb8ff8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0f23d7f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"883b62f\"},{\"_id\":\"596ce1b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dda72e1\"},{\"_id\":\"0418ff0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"2567264\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get instant freight quote.\",\"_id\":\"ddc11c4\"}],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5266ab9\"},{\"_id\":\"6b5d95c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"03f5047\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7919fc2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"3288cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Looking for partnership? Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"b33797a\"},{\"_id\":\"59f8e98\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"item_color\":\"var(--e-global-color-5b35d73)\"},{\"_id\":\"59f13da\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":38,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3e11117\"},{\"_id\":\"bf9de26\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c0b3a08\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7aa6680\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"881d033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b65dcca\"},{\"_id\":\"ba13e12\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2396245\"},{\"_id\":\"2a0bab6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"63e4e1b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"d1c0c07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Visit\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ba077c1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"290 Maryam Springs 260, Courbevoie, Paris, France\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"a6a01f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[{\"id\":\"6e2940e\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Call\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"dd36e02\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"+1 122 256 7890\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"df84ced\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"flex-end\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"e4b5bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Email\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d66591d\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"info@liquid-themes.com\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7116388\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"656***1703228922422\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4e73b46\"},{\"_id\":\"3d4c313\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d1ca094\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2a3e958\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(863, 1875, '_elementor_edit_mode', 'builder'),
(864, 1875, '_elementor_template_type', 'wp-page'),
(865, 1875, '_elementor_version', '3.21.8'),
(866, 1875, '_wp_page_template', 'default'),
(867, 1875, '_elementor_page_settings', 'a:1:{s:18:\"liquid_sidebar_one\";s:0:\"\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(868, 1875, '_elementor_data', '[{\"id\":\"92ac24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_size\":\"initial\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=6g-PETEzR74\",\"background_video_start\":35,\"background_video_end\":119,\"background_play_on_mobile\":\"yes\",\"background_video_fallback\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-1.jpg\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-jpg.webp\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e5fa930\"},{\"_id\":\"751cc7b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f35c56c\"},{\"_id\":\"e2d5bac\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"z_index\":2,\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"banner\",\"background_slideshow_slide_duration\":2500,\"background_slideshow_ken_burns\":\"yes\",\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"flex_wrap\":\"wrap\",\"background_xpos\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_section_color_scheme\":\"dark\",\"width_tablet_extra\":{\"unit\":\"px\",\"size\":997},\"width_tablet\":{\"unit\":\"px\",\"size\":604},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_tablet_extra\":\"initial\",\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"80fc763\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f08e23b\"},{\"_id\":\"c032df7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b403030\"},{\"_id\":\"e72e6b2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"_title\":\"Content\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f6b7bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexible\",\"_id\":\"6b6ba9d\"},{\"_id\":\"6935af4\",\"text\":\"Shipment.\",\"text_individual_styles\":\"yes\",\"item_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"item_color\":\"var(--e-global-color-dafbdf1)\"}],\"lqd_text_tag\":\"h1\",\"lqd_text_split_type\":\"words\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e087f51\"},{\"_id\":\"49acf98\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"61c5639\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},{\"_id\":\"d0c7a7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":12,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_trigger\":\"topParentContainer\",\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"90adaae\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Air freight terminals and facilities are subject to strict security measures and we take all necessary measures.\",\"_id\":\"2e692f1\"}],\"lqd_text_tag\":\"p\",\"lqd_text_split_type\":\"words\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d17b727\"},{\"_id\":\"0ff9abe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"feea344\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"02fd6fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_font_family\":\"Inter\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"lqd_text_typography_font_weight\":\"400\",\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"19a2aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"color_normal\":\"var(--e-global-color-a606f90)\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"hover_icon_custom_x\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"hover_icon_custom_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"color_hover\":\"var(--e-global-color-dafbdf1)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"c6f68d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"147a08f\"},{\"_id\":\"06f523a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"15024c0\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"4a2d58b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"animation\":\"bounceInUp\"},\"elements\":[{\"id\":\"2cb8f36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2024\\/02\\/container.webp\",\"id\":1752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b996601\"},{\"_id\":\"59105f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7453df2\"},{\"_id\":\"2f1fb80\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e96a98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"9bf0463\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"63a58c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Pads\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/logistics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"button_icon_effect_custom\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"694b412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"c82e678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Shoes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"5dd42bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a8df547\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore J1-Brakes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9509bc0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"1cc15a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/brake-disc.png\",\"id\":1864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":-180.2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"_z_index\":0,\"lqd_parallax\":\"yes\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3f28982\",\"y\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},{\"_id\":\"77db96b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"16ea3cb\"},{\"_id\":\"a4cb738\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6c7d141\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"25\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a7cad1e\"},{\"_id\":\"b26f8d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4dadf0b\"},{\"_id\":\"12c357d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_aa_perspective\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"ec6b773\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Brake\\n Solutions.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_text_typography_typography\":\"custom\",\"_element_width\":\"initial\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9bb9cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"8a124c4\"},{\"_id\":\"83e8f04\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\"},{\"_id\":\"86deeab\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"cd5a277\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"74a24c4\",\"elType\":\"widget\",\"settings\":{\"active_item\":0,\"items\":[{\"title\":\"Exceptional Friction\",\"content\":\"Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"e44a71e\"},{\"title\":\"Reduced Noise Emission\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"4991663\"},{\"title\":\"International Shipment\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"889cd6a\"},{\"title\":\"Rapid Response Time\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"49da747\"},{\"title\":\"Reliable Performance\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"2e27ebd\"},{\"title\":\"Shipping and Logistics\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"d239b77\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b199bd5\"},{\"_id\":\"ebf85d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"878905b\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]}},{\"_id\":\"99f211e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_position\":\"next_to_title\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_icon_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.35\",\"isLinked\":false},\"trigger_icon_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_color\":\"var(--e-global-color-5b35d73)\",\"content_color_laptop\":\"var(--e-global-color-primary)\",\"content_color_tablet_extra\":\"var(--e-global-color-primary)\",\"content_color_tablet\":\"var(--e-global-color-primary)\",\"content_color_mobile\":\"var(--e-global-color-primary)\",\"content_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"enable_trigger_icon_visible_on_hover_active\":\"yes\",\"trigger_color_hover\":\"var(--e-global-color-primary)\",\"trigger_color_hover_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_hover_mobile\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-primary)\",\"trigger_color_active_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_active_mobile\":\"var(--e-global-color-primary)\",\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"content\":\"
Our Ocean Freight service offers cost-effective, eco-friendly solutions for shipping your goods across the globe. Leveraging partnerships with major carriers, we ensure secure, reliable sea transport.<\\/p>\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"20db145\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"055\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64058\"},{\"_id\":\"e91658e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"56a8ebe\"},{\"_id\":\"abaece2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12d8aa4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"477d729\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Freight Services.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9ac9959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ee1f92\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4993413\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"b8d4c97\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"_id\":\"58edfde\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"_id\":\"3b91aff\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"f872458\"},{\"_id\":\"6a19633\",\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"8b110ba\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"6421ea5\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"39db942\"},{\"_id\":\"2cb3ea3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a496456\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"28d36d4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"wrap_around\":\"yes\",\"cell_width\":{\"unit\":\"%\",\"size\":32.5,\"sizes\":[]},\"cell_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"cell_border_border\":\"solid\",\"cell_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cell_border_color\":\"var(--e-global-color-aa8e668)\",\"nav_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"40\",\"height\":\"40\"},\"nav_placement\":\"inside\",\"nav_align\":\"end\",\"nav_orientation_h\":\"end\",\"nav_offset_y\":{\"unit\":\"px\",\"size\":-120,\"sizes\":[]},\"nav_color\":\"var(--e-global-color-5b35d73)\",\"nav_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"nav_color_hover\":\"var(--e-global-color-a606f90)\",\"nav_background_hover_background\":\"color\",\"nav_background_hover_color\":\"var(--e-global-color-primary)\",\"cell_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"nav_align_mobile\":\"space-between\",\"nav_orientation_v_mobile\":\"bottom\",\"nav_offset_y_bottom_mobile\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"cell_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"nav_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"28ed06e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"741b764\"},{\"_id\":\"070d066\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"74a50a0\"},{\"_id\":\"8fb757f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41d2bc9\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Years of Expertise\",\"_id\":\"8ec2d88\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"lqd_text_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment\":\"center\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce393a8\"},{\"_id\":\"c11b390\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"899c390\"},{\"_id\":\"35703ef\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ee86930\",\"elType\":\"widget\",\"settings\":{\"count_to\":42,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"fb49132\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"594b906\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"33a9992\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"6455621\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"9ff3df9\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b579349\"},{\"_id\":\"37043a3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0edd1d1\"},{\"_id\":\"c90bfde\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"counter_typography_typography\":\"custom\",\"counter_typography_font_size\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"counter_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"counter_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"counter_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-counter\"},{\"id\":\"d8b7dee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/1.png\",\"id\":1867,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"fcc08fe\"},{\"_id\":\"b6d7a94\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e4d40f5\",\"x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"skewX\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"8a956db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"luminosity\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true},{\"id\":\"f0b5658\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2c07f6b\"},{\"_id\":\"fe1fd2e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dc6dba1\"},{\"_id\":\"49b152d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f95e41a\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Leading experience\",\"_id\":\"bfc9ea3\"}],\"lqd_text_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"12\",\"bottom\":\"6\",\"left\":\"12\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"184f163\"},{\"_id\":\"8c27125\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"466091a\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"b50b26f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=1c775b2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"302b4c7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Why Choose J1-Brakes?\",\"_id\":\"8129e42\"}],\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1c08060\"},{\"_id\":\"4c8f53a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"11c6148\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c1b09d3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=6b6095e\"},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.035,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"781f1b6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"90b08bb\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"534a177\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Transshipment Hubs\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"77247f6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"9065c96\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Reliable Schedules\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"94716ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"220b384\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Environmental Friendliness\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"4122f9e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Access to Remote Destinations\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"e7240f0\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"91079a6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Flexibility in Packaging\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"c6e6c96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3708cac\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Trade Routes Optimization\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"3acb219\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b2a84f7\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Long-term Contracts\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b47f267\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Suitable for Heavy Goods\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"30b8d9d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"85\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"88bc71a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/dots.png\",\"id\":409,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1260,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_z_index\":0,\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6666f9b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Top-Quality Brake Solutions\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4cd5034\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6448929\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"8487355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"e90b1c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"flex_align_items\":\"flex-start\"},\"elements\":[{\"id\":\"2a376a8\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Premium Material\",\"subtitle\":\"1\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/explore.svg\",\"id\":388},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b4d006e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Superior Performance\",\"subtitle\":\"2\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/language.svg\",\"id\":383},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"c1e6c8b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Long-lasting Durability\",\"subtitle\":\"3\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/preliminary.svg\",\"id\":384},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"eb69693\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"84c1b68\"},{\"_id\":\"1161fac\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8c1aa83\"},{\"_id\":\"df23328\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"1234d07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Have a project in mind? You\\u2019re welcome to send a \",\"_id\":\"d8ee6cd\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"e70b313\",\"text\":\"message\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d1cfd77\",\"text\":\" or \",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"c4cf209\",\"text\":\"give us a call.\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"lqd_text_alignment\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"62f543e\"},{\"_id\":\"b5c81a1\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"beb4d2d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"724188f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_border_color\":\"#7070701F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_inview\":\"yes\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=7ebb86a\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f649c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"15\",\"bottom\":\"160\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a32aa81\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"item_content\":\"Stackable item #1\",\"_id\":\"e01fb82\",\"content_type\":\"el_template\",\"content_templates\":\"872\"},{\"item_content\":\"Stackable item #1\",\"content_type\":\"el_template\",\"content_templates\":\"1409\",\"_id\":\"b2006c7\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca1f771\"},{\"_id\":\"a12f7ff\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"87e67dd\"},{\"_id\":\"168ea26\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width\":\"inherit\",\"adaptive_height\":\"yes\",\"slides_indicator_align\":\"start\",\"slides_indicator_placement_h\":\"end\",\"slides_indicator_offset_x_end\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"slides_indicator_offset_x_end_laptop\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slides_indicator_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slides_indicator_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"slides_indicator_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"slides_indicator_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"slides_indicator_slides_indicator_color_mobile\":\"#FFFFFF\",\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"lqd-stack\"}],\"isInner\":false},{\"id\":\"7ed2a14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"lqd_section_color_scheme\":\"dark\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/grid.svg\",\"id\":458,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-1.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"15\",\"bottom\":\"140\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4cb3832\"},{\"_id\":\"98839cc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"273c03e\"},{\"_id\":\"9944de4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"80dc830\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexibility in logistics.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=a054e68\"},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_text_alignment_mobile\":\"center\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"91fd90d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"17d0631\"},{\"_id\":\"c107796\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b1b630c\"},{\"_id\":\"5cf2685\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"50\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"2414b66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a9d9983\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon.svg\",\"id\":469},\"library\":\"svg\"},\"title\":\"Pickup and Delivery\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"27eeb55\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f437daf\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-1.svg\",\"id\":471},\"library\":\"svg\"},\"title\":\"Container Shipping\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"dd0ccc1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"d74c31f\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-2.svg\",\"id\":470},\"library\":\"svg\"},\"title\":\"Ocean Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"1b597a2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"606dc75\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-3.svg\",\"id\":468},\"library\":\"svg\"},\"title\":\"Air Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ead48e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c5a472a\"},{\"_id\":\"2d9feb2\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"02783dd\"},{\"_id\":\"4c7f96c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f7081fc\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-5.svg\",\"id\":577},\"library\":\"svg\"},\"title\":\"Track your shipment.\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
Through a unique combination of engineering, construction and design<\\/strong><\\/span> disciplines and expertise, Thanks to our advanced technological infrastructure and expert staff<\\/strong><\\/span>, such as supply.<\\/p>\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.95,\"sizes\":[]},\"title_tag\":\"h2\",\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"7ce2b7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/container.jpg\",\"id\":568,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca73a96\"},{\"_id\":\"3c396de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d85a765\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"31bf9ba\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"darken\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"70a71df\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Air Freight\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> <\\/span>chain management, warehousing, distribution, transportation.<\\/p>\",\"_id\":\"24977ac\"},{\"title\":\"Road Freight Services\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"9436b06\"},{\"title\":\"Operational Cost\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"1a17a1d\"},{\"title\":\"Warehouse Management\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"686025c\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"item_border_border\":\"solid\",\"item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"item_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"trigger_icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"44\",\"height\":\"44\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b2900e4\"},{\"_id\":\"9a5eef3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b16c393\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"6617d29\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_color\":\"var(--e-global-color-a606f90)\",\"trigger_icon_background_background\":\"color\",\"trigger_icon_background_color\":\"var(--e-global-color-primary)\",\"trigger_icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"content_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"bf500aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"5c6d8cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"min_height\":{\"unit\":\"custom\",\"size\":\"75%\",\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/patt.svg\",\"id\":596,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"z_index\":0},\"elements\":[],\"isInner\":true},{\"id\":\"ec851a1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Testimonials\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9c466e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dd98cd\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Hear from them\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"1f6f613\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f5a42de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"140\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":140},\"flex_gap_tablet\":{\"column\":\"45\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":45}},\"elements\":[{\"id\":\"8631dcd\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"_id\":\"d3e5cc2\",\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dde6fa5\"},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"76a933c\"}],\"wrap_around\":\"yes\",\"nav_buttons\":\"\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"draggable\":\"\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"},{\"id\":\"4490a06\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"_id\":\"d3e5cc2\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"2162383\"},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"587305d\"}],\"wrap_around\":\"yes\",\"connected_carousels\":\"testimonials-image\",\"nav_buttons\":\"\",\"pagination_dots\":\"yes\",\"dots_align\":\"start\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"dots_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"dots_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"10\",\"height\":\"10\"},\"dots_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_background_background\":\"color\",\"dots_background_color\":\"#00000026\",\"dots_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"dots_background_hover_background\":\"color\",\"dots_background_hover_color\":\"var(--e-global-color-5b35d73)\",\"dots_background_active_background\":\"color\",\"dots_background_active_color\":\"var(--e-global-color-5b35d73)\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"cell_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"05e9398\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"22dbd90\"},{\"_id\":\"023a6c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"264c000\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bae44b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"b5ba05e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-1.svg\",\"id\":606,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"c061a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-2.svg\",\"id\":607,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"4ca3a67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-3.svg\",\"id\":608,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"1afa352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-5.svg\",\"id\":609,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"97be2f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-6.svg\",\"id\":610,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9b4c21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-2.jpg\",\"id\":620,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a5667fa\"},{\"_id\":\"37e47ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7c8c71d\"},{\"_id\":\"f33dbb7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_section_color_scheme\":\"dark\"},\"elements\":[{\"id\":\"1cd6cd0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"45\",\"bottom\":\"30\",\"left\":\"45\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ecbe767\"},{\"_id\":\"c8908ca\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a32b990\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2c1bae8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3811199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"6002008\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Assets\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ab4d5fe\",\"elType\":\"widget\",\"settings\":{\"count_to\":301,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"4059851\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"dd1e506\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Destinations\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"c3cb2ab\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":598,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"3283fc5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"fa37ba1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Transit\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"e16e025\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":980,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"counter_suffix\":\"+\",\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"fe8475c\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Through a unique combination of\\nengineering, construction and design disciplines and expertise,\",\"_id\":\"051459d\"}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f9a373a\"},{\"_id\":\"01b43df\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7fe4b30\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bcb8ff8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0f23d7f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"883b62f\"},{\"_id\":\"596ce1b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dda72e1\"},{\"_id\":\"0418ff0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"2567264\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get instant freight quote.\",\"_id\":\"ddc11c4\"}],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5266ab9\"},{\"_id\":\"6b5d95c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"03f5047\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7919fc2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"3288cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Looking for partnership? Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"b33797a\"},{\"_id\":\"59f8e98\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"item_color\":\"var(--e-global-color-5b35d73)\"},{\"_id\":\"59f13da\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":38,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3e11117\"},{\"_id\":\"bf9de26\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c0b3a08\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7aa6680\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"881d033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b65dcca\"},{\"_id\":\"ba13e12\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2396245\"},{\"_id\":\"2a0bab6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"63e4e1b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"d1c0c07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Visit\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ba077c1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"290 Maryam Springs 260, Courbevoie, Paris, France\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"a6a01f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[{\"id\":\"6e2940e\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Call\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"dd36e02\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"+1 122 256 7890\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"df84ced\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"flex-end\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"e4b5bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Email\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d66591d\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"info@liquid-themes.com\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7116388\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"656***1703228922422\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4e73b46\"},{\"_id\":\"3d4c313\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d1ca094\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2a3e958\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(881, 1876, '_elementor_edit_mode', 'builder'),
(882, 1876, '_elementor_template_type', 'wp-page'),
(883, 1876, '_elementor_version', '3.21.8'),
(884, 1876, '_wp_page_template', 'default'),
(885, 1876, '_elementor_page_settings', 'a:1:{s:18:\"liquid_sidebar_one\";s:0:\"\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(886, 1876, '_elementor_data', '[{\"id\":\"92ac24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_size\":\"initial\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=6g-PETEzR74\",\"background_video_start\":35,\"background_video_end\":119,\"background_play_on_mobile\":\"yes\",\"background_video_fallback\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-1.jpg\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-jpg.webp\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e5fa930\"},{\"_id\":\"751cc7b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f35c56c\"},{\"_id\":\"e2d5bac\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"z_index\":2,\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"banner\",\"background_slideshow_slide_duration\":2500,\"background_slideshow_ken_burns\":\"yes\",\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"flex_wrap\":\"wrap\",\"background_xpos\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_section_color_scheme\":\"dark\",\"width_tablet_extra\":{\"unit\":\"px\",\"size\":997},\"width_tablet\":{\"unit\":\"px\",\"size\":604},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_tablet_extra\":\"initial\",\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"80fc763\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f08e23b\"},{\"_id\":\"c032df7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b403030\"},{\"_id\":\"e72e6b2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"_title\":\"Content\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f6b7bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexible\",\"_id\":\"6b6ba9d\"},{\"_id\":\"6935af4\",\"text\":\"Shipment.\",\"text_individual_styles\":\"yes\",\"item_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"item_color\":\"var(--e-global-color-dafbdf1)\"}],\"lqd_text_tag\":\"h1\",\"lqd_text_split_type\":\"words\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e087f51\"},{\"_id\":\"49acf98\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"61c5639\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},{\"_id\":\"d0c7a7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":12,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_trigger\":\"topParentContainer\",\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"90adaae\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Air freight terminals and facilities are subject to strict security measures and we take all necessary measures.\",\"_id\":\"2e692f1\"}],\"lqd_text_tag\":\"p\",\"lqd_text_split_type\":\"words\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d17b727\"},{\"_id\":\"0ff9abe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"feea344\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"02fd6fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_font_family\":\"Inter\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"lqd_text_typography_font_weight\":\"400\",\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"19a2aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"color_normal\":\"var(--e-global-color-a606f90)\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"hover_icon_custom_x\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"hover_icon_custom_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"color_hover\":\"var(--e-global-color-dafbdf1)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"c6f68d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"147a08f\"},{\"_id\":\"06f523a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"15024c0\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"4a2d58b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"animation\":\"bounceInUp\"},\"elements\":[{\"id\":\"2cb8f36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2024\\/02\\/container.webp\",\"id\":1752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b996601\"},{\"_id\":\"59105f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7453df2\"},{\"_id\":\"2f1fb80\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e96a98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"9bf0463\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"63a58c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Pads\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/logistics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"button_icon_effect_custom\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"694b412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"c82e678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Shoes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"5dd42bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a8df547\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore J1-Brakes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9509bc0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"1cc15a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/brake-disc.png\",\"id\":1864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":-180.2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"_z_index\":0,\"lqd_parallax\":\"yes\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3f28982\",\"y\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},{\"_id\":\"77db96b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"16ea3cb\"},{\"_id\":\"a4cb738\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6c7d141\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"25\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a7cad1e\"},{\"_id\":\"b26f8d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4dadf0b\"},{\"_id\":\"12c357d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_aa_perspective\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"ec6b773\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Brake\\n Solutions.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_text_typography_typography\":\"custom\",\"_element_width\":\"initial\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9bb9cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"8a124c4\"},{\"_id\":\"83e8f04\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\"},{\"_id\":\"86deeab\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"cd5a277\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"74a24c4\",\"elType\":\"widget\",\"settings\":{\"active_item\":0,\"items\":[{\"title\":\"Exceptional Friction\",\"content\":\"Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"e44a71e\"},{\"title\":\"Reduced Noise Emission\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"4991663\"},{\"title\":\"International Shipment\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"889cd6a\"},{\"title\":\"Rapid Response Time\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"49da747\"},{\"title\":\"Reliable Performance\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"2e27ebd\"},{\"title\":\"Shipping and Logistics\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"d239b77\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b199bd5\"},{\"_id\":\"ebf85d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"878905b\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]}},{\"_id\":\"99f211e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_position\":\"next_to_title\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_icon_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.35\",\"isLinked\":false},\"trigger_icon_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_color\":\"var(--e-global-color-5b35d73)\",\"content_color_laptop\":\"var(--e-global-color-primary)\",\"content_color_tablet_extra\":\"var(--e-global-color-primary)\",\"content_color_tablet\":\"var(--e-global-color-primary)\",\"content_color_mobile\":\"var(--e-global-color-primary)\",\"content_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"enable_trigger_icon_visible_on_hover_active\":\"yes\",\"trigger_color_hover\":\"var(--e-global-color-primary)\",\"trigger_color_hover_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_hover_mobile\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-primary)\",\"trigger_color_active_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_active_mobile\":\"var(--e-global-color-primary)\",\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"content\":\"
Our Ocean Freight service offers cost-effective, eco-friendly solutions for shipping your goods across the globe. Leveraging partnerships with major carriers, we ensure secure, reliable sea transport.<\\/p>\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"20db145\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"055\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64058\"},{\"_id\":\"e91658e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"56a8ebe\"},{\"_id\":\"abaece2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12d8aa4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"477d729\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Freight Services.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9ac9959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ee1f92\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4993413\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"b8d4c97\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"_id\":\"58edfde\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"_id\":\"3b91aff\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"f872458\"},{\"_id\":\"6a19633\",\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"8b110ba\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"6421ea5\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"39db942\"},{\"_id\":\"2cb3ea3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a496456\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"28d36d4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"wrap_around\":\"yes\",\"cell_width\":{\"unit\":\"%\",\"size\":32.5,\"sizes\":[]},\"cell_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"cell_border_border\":\"solid\",\"cell_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cell_border_color\":\"var(--e-global-color-aa8e668)\",\"nav_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"40\",\"height\":\"40\"},\"nav_placement\":\"inside\",\"nav_align\":\"end\",\"nav_orientation_h\":\"end\",\"nav_offset_y\":{\"unit\":\"px\",\"size\":-120,\"sizes\":[]},\"nav_color\":\"var(--e-global-color-5b35d73)\",\"nav_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"nav_color_hover\":\"var(--e-global-color-a606f90)\",\"nav_background_hover_background\":\"color\",\"nav_background_hover_color\":\"var(--e-global-color-primary)\",\"cell_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"nav_align_mobile\":\"space-between\",\"nav_orientation_v_mobile\":\"bottom\",\"nav_offset_y_bottom_mobile\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"cell_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"nav_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"28ed06e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"741b764\"},{\"_id\":\"070d066\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"74a50a0\"},{\"_id\":\"8fb757f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41d2bc9\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Years of Expertise\",\"_id\":\"8ec2d88\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"lqd_text_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment\":\"center\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce393a8\"},{\"_id\":\"c11b390\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"899c390\"},{\"_id\":\"35703ef\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ee86930\",\"elType\":\"widget\",\"settings\":{\"count_to\":42,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"fb49132\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"594b906\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"33a9992\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"6455621\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"9ff3df9\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b579349\"},{\"_id\":\"37043a3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0edd1d1\"},{\"_id\":\"c90bfde\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"counter_typography_typography\":\"custom\",\"counter_typography_font_size\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"counter_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"counter_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"counter_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-counter\"},{\"id\":\"d8b7dee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/1.png\",\"id\":1867,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"fcc08fe\"},{\"_id\":\"b6d7a94\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e4d40f5\",\"x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"skewX\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"8a956db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"luminosity\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true},{\"id\":\"f0b5658\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2c07f6b\"},{\"_id\":\"fe1fd2e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dc6dba1\"},{\"_id\":\"49b152d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f95e41a\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Leading experience\",\"_id\":\"bfc9ea3\"}],\"lqd_text_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"12\",\"bottom\":\"6\",\"left\":\"12\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"184f163\"},{\"_id\":\"8c27125\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"466091a\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"b50b26f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=1c775b2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"302b4c7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Why Choose J1-Brakes?\",\"_id\":\"8129e42\"}],\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1c08060\"},{\"_id\":\"4c8f53a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"11c6148\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c1b09d3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=6b6095e\"},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.035,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"781f1b6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"90b08bb\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"534a177\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Transshipment Hubs\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"77247f6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"9065c96\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Reliable Schedules\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"94716ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"220b384\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Environmental Friendliness\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"4122f9e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Access to Remote Destinations\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"e7240f0\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"91079a6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Flexibility in Packaging\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"c6e6c96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3708cac\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Trade Routes Optimization\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"3acb219\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b2a84f7\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Long-term Contracts\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b47f267\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Suitable for Heavy Goods\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"30b8d9d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"85\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"88bc71a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/dots.png\",\"id\":409,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1260,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_z_index\":0,\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6666f9b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Top-Quality Brake Solutions\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4cd5034\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6448929\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"8487355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"e90b1c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"flex_align_items\":\"flex-start\"},\"elements\":[{\"id\":\"2a376a8\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Premium Material\",\"subtitle\":\"1\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/explore.svg\",\"id\":388},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b4d006e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Superior Performance\",\"subtitle\":\"2\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/language.svg\",\"id\":383},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"c1e6c8b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Long-lasting Durability\",\"subtitle\":\"3\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/preliminary.svg\",\"id\":384},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"eb69693\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"84c1b68\"},{\"_id\":\"1161fac\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8c1aa83\"},{\"_id\":\"df23328\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"1234d07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Have a project in mind? You\\u2019re welcome to send a \",\"_id\":\"d8ee6cd\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"e70b313\",\"text\":\"message\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d1cfd77\",\"text\":\" or \",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"c4cf209\",\"text\":\"give us a call.\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"lqd_text_alignment\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"62f543e\"},{\"_id\":\"b5c81a1\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"beb4d2d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"724188f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_border_color\":\"#7070701F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_inview\":\"yes\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=7ebb86a\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f649c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"15\",\"bottom\":\"160\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a32aa81\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"item_content\":\"Stackable item #1\",\"_id\":\"e01fb82\",\"content_type\":\"el_template\",\"content_templates\":\"872\"},{\"item_content\":\"Stackable item #1\",\"content_type\":\"el_template\",\"content_templates\":\"872\",\"_id\":\"b2006c7\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca1f771\"},{\"_id\":\"a12f7ff\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"87e67dd\"},{\"_id\":\"168ea26\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width\":\"inherit\",\"adaptive_height\":\"yes\",\"slides_indicator_align\":\"start\",\"slides_indicator_placement_h\":\"end\",\"slides_indicator_offset_x_end\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"slides_indicator_offset_x_end_laptop\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slides_indicator_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slides_indicator_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"slides_indicator_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"slides_indicator_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"slides_indicator_slides_indicator_color_mobile\":\"#FFFFFF\",\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"lqd-stack\"}],\"isInner\":false},{\"id\":\"7ed2a14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"lqd_section_color_scheme\":\"dark\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/grid.svg\",\"id\":458,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-1.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"15\",\"bottom\":\"140\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4cb3832\"},{\"_id\":\"98839cc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"273c03e\"},{\"_id\":\"9944de4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"80dc830\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexibility in logistics.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=a054e68\"},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_text_alignment_mobile\":\"center\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"91fd90d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"17d0631\"},{\"_id\":\"c107796\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b1b630c\"},{\"_id\":\"5cf2685\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"50\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"2414b66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a9d9983\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon.svg\",\"id\":469},\"library\":\"svg\"},\"title\":\"Pickup and Delivery\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"27eeb55\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f437daf\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-1.svg\",\"id\":471},\"library\":\"svg\"},\"title\":\"Container Shipping\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"dd0ccc1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"d74c31f\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-2.svg\",\"id\":470},\"library\":\"svg\"},\"title\":\"Ocean Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"1b597a2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"606dc75\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-3.svg\",\"id\":468},\"library\":\"svg\"},\"title\":\"Air Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ead48e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c5a472a\"},{\"_id\":\"2d9feb2\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"02783dd\"},{\"_id\":\"4c7f96c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f7081fc\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-5.svg\",\"id\":577},\"library\":\"svg\"},\"title\":\"Track your shipment.\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
Through a unique combination of engineering, construction and design<\\/strong><\\/span> disciplines and expertise, Thanks to our advanced technological infrastructure and expert staff<\\/strong><\\/span>, such as supply.<\\/p>\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.95,\"sizes\":[]},\"title_tag\":\"h2\",\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"7ce2b7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/container.jpg\",\"id\":568,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca73a96\"},{\"_id\":\"3c396de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d85a765\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"31bf9ba\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"darken\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"70a71df\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Air Freight\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> <\\/span>chain management, warehousing, distribution, transportation.<\\/p>\",\"_id\":\"24977ac\"},{\"title\":\"Road Freight Services\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"9436b06\"},{\"title\":\"Operational Cost\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"1a17a1d\"},{\"title\":\"Warehouse Management\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"686025c\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"item_border_border\":\"solid\",\"item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"item_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"trigger_icon_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"44\",\"height\":\"44\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b2900e4\"},{\"_id\":\"9a5eef3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b16c393\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"6617d29\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_color\":\"var(--e-global-color-a606f90)\",\"trigger_icon_background_background\":\"color\",\"trigger_icon_background_color\":\"var(--e-global-color-primary)\",\"trigger_icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"content_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"bf500aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"5c6d8cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]},\"min_height\":{\"unit\":\"custom\",\"size\":\"75%\",\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"custom\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/patt.svg\",\"id\":596,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"position\":\"absolute\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"z_index\":0},\"elements\":[],\"isInner\":true},{\"id\":\"ec851a1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Testimonials\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9c466e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dd98cd\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Hear from them\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"1f6f613\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"f5a42de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"flex_gap\":{\"column\":\"140\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":140},\"flex_gap_tablet\":{\"column\":\"45\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":45}},\"elements\":[{\"id\":\"8631dcd\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"_id\":\"d3e5cc2\",\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dde6fa5\"},{\"cell_content_type\":\"image\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"76a933c\"}],\"wrap_around\":\"yes\",\"nav_buttons\":\"\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"_flex_size\":\"none\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"draggable\":\"\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"},{\"id\":\"4490a06\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"_id\":\"d3e5cc2\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"2162383\"},{\"cell_content\":\"Daniel Mackzee, CTO<\\/p>\\n\\n\\u201c I recently used OceanExplorer Logistics for a shipment of goods from our warehouse to a customer on the opposite coast, and I couldn\'t be happier<\\/strong> <\\/span>with the service I received. From the moment I reached out to them, their customer support team was incredibly helpfu.\",\"name\":\"John Doe\",\"title\":\"Developer\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/avatar-1.jpg\",\"id\":601,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"587305d\"}],\"wrap_around\":\"yes\",\"connected_carousels\":\"testimonials-image\",\"nav_buttons\":\"\",\"pagination_dots\":\"yes\",\"dots_align\":\"start\",\"cell_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"dots_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"dots_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"10\",\"height\":\"10\"},\"dots_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_background_background\":\"color\",\"dots_background_color\":\"#00000026\",\"dots_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"dots_background_hover_background\":\"color\",\"dots_background_hover_color\":\"var(--e-global-color-5b35d73)\",\"dots_background_active_background\":\"color\",\"dots_background_active_color\":\"var(--e-global-color-5b35d73)\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":235,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a53aa4d\"},{\"_id\":\"5049162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"de25d05\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0da2bf0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"cell_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"05e9398\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"22dbd90\"},{\"_id\":\"023a6c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"264c000\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bae44b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"b5ba05e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-1.svg\",\"id\":606,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"c061a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-2.svg\",\"id\":607,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"4ca3a67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-3.svg\",\"id\":608,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"1afa352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-5.svg\",\"id\":609,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"97be2f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/logo-6.svg\",\"id\":610,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"19bb025\"},{\"_id\":\"3277893\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b036073\"},{\"_id\":\"0337a70\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e9b4c21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-2.jpg\",\"id\":620,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a5667fa\"},{\"_id\":\"37e47ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7c8c71d\"},{\"_id\":\"f33dbb7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_section_color_scheme\":\"dark\"},\"elements\":[{\"id\":\"1cd6cd0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"45\",\"bottom\":\"30\",\"left\":\"45\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ecbe767\"},{\"_id\":\"c8908ca\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a32b990\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2c1bae8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3811199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"6002008\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Assets\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ab4d5fe\",\"elType\":\"widget\",\"settings\":{\"count_to\":301,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"4059851\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"dd1e506\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Destinations\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"c3cb2ab\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":598,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"3283fc5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"35\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f0e145e\"},{\"_id\":\"024e1da\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"41c6ef6\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0152008\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"border_color\":\"globals\\/colors?id=aa8e668\"},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"wrap\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"fa37ba1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Transit\",\"_id\":\"9fd7e12\"}],\"lqd_text_tag\":\"h4\",\"_flex_size\":\"grow\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"abcc8b8\"},{\"_id\":\"5366e0c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"1cfcb3c\"},{\"_id\":\"daf0252\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_aa_opacity\":\"yes\",\"lqd_aa_opacity_normal\":{\"unit\":\"px\",\"size\":0.45,\"sizes\":[]},\"lqd_aa_opacity_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_aa_opacity_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"e16e025\",\"elType\":\"widget\",\"settings\":{\"count_from\":\"\",\"count_to\":980,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"c5bfbcb\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"4bbb66e\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"026bed1\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"8fcf918\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"62e15fd\"}],\"counter_suffix\":\"+\",\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"41487f5\"},{\"_id\":\"39d08c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9098afd\"},{\"_id\":\"bfd2a62\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"counter_typography_typography\":\"globals\\/typography?id=a054e68\"},\"text_align_mobile\":\"left\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"counter_color\":\"var(--e-global-color-5b35d73)\"},\"elements\":[],\"widgetType\":\"lqd-counter\"}],\"isInner\":true},{\"id\":\"fe8475c\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Through a unique combination of\\nengineering, construction and design disciplines and expertise,\",\"_id\":\"051459d\"}],\"lqd_text_tag\":\"p\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f9a373a\"},{\"_id\":\"01b43df\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7fe4b30\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"bcb8ff8\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0f23d7f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"883b62f\"},{\"_id\":\"596ce1b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dda72e1\"},{\"_id\":\"0418ff0\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"2567264\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Get instant freight quote.\",\"_id\":\"ddc11c4\"}],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"5266ab9\"},{\"_id\":\"6b5d95c\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"03f5047\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7919fc2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"3288cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Looking for partnership? Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"b33797a\"},{\"_id\":\"59f8e98\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"item_color\":\"var(--e-global-color-5b35d73)\"},{\"_id\":\"59f13da\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":38,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3e11117\"},{\"_id\":\"bf9de26\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"c0b3a08\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"7aa6680\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"881d033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b65dcca\"},{\"_id\":\"ba13e12\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"2396245\"},{\"_id\":\"2a0bab6\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"63e4e1b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"d1c0c07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Visit\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ba077c1\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"290 Maryam Springs 260, Courbevoie, Paris, France\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"a6a01f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[{\"id\":\"6e2940e\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Call\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"dd36e02\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"+1 122 256 7890\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true},{\"id\":\"df84ced\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"453425d\"},{\"_id\":\"283a1eb\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"07265ed\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"71dcb8b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"flex-end\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"flex-start\",\"flex_gap_mobile\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[{\"id\":\"e4b5bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Email\",\"_id\":\"238b563\"}],\"lqd_text_tag\":\"p\",\"lqd_text_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"732b017\"},{\"_id\":\"c3a7212\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"fbf7e49\"},{\"_id\":\"233a4e3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=032bde8\"},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"d66591d\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"info@liquid-themes.com\",\"_id\":\"176e4e9\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2208e78\"},{\"_id\":\"e799efa\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f66a306\"},{\"_id\":\"06d0562\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=05699ce\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7116388\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"656***1703228922422\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4e73b46\"},{\"_id\":\"3d4c313\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d1ca094\",\"y\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"2a3e958\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(913, 1877, '_wp_attached_file', '2024/06/j1-brakes-disc.png'),
(914, 1877, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:714;s:6:\"height\";i:721;s:4:\"file\";s:26:\"2024/06/j1-brakes-disc.png\";s:8:\"filesize\";i:524299;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"j1-brakes-disc-297x300.png\";s:5:\"width\";i:297;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105644;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"j1-brakes-disc-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33960;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(950, 1879, '_wp_attached_file', '2024/06/stripe-2x.png'),
(951, 1879, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:31;s:6:\"height\";i:31;s:4:\"file\";s:21:\"2024/06/stripe-2x.png\";s:8:\"filesize\";i:603;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(952, 1880, '_elementor_edit_mode', 'builder'),
(953, 1880, '_elementor_template_type', 'wp-page'),
(954, 1880, '_elementor_version', '3.21.8'),
(955, 1880, '_wp_page_template', 'default'),
(956, 1880, '_elementor_page_settings', 'a:1:{s:18:\"liquid_sidebar_one\";s:0:\"\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(957, 1880, '_elementor_data', '[{\"id\":\"92ac24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"min_height_laptop\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_size\":\"initial\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=6g-PETEzR74\",\"background_video_start\":35,\"background_video_end\":119,\"background_play_on_mobile\":\"yes\",\"background_video_fallback\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/bg-1.jpg\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-jpg.webp\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e5fa930\"},{\"_id\":\"751cc7b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"f35c56c\"},{\"_id\":\"e2d5bac\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"z_index\":2,\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"banner\",\"background_slideshow_slide_duration\":2500,\"background_slideshow_ken_burns\":\"yes\",\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"flex_wrap\":\"wrap\",\"background_xpos\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_section_color_scheme\":\"dark\",\"width_tablet_extra\":{\"unit\":\"px\",\"size\":997},\"width_tablet\":{\"unit\":\"px\",\"size\":604},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_tablet_extra\":\"initial\",\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"80fc763\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"f08e23b\"},{\"_id\":\"c032df7\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b403030\"},{\"_id\":\"e72e6b2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"_title\":\"Content\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"width_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f6b7bdc\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexible\",\"_id\":\"6b6ba9d\"},{\"_id\":\"6935af4\",\"text\":\"Shipment.\",\"text_individual_styles\":\"yes\",\"item_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"item_color\":\"var(--e-global-color-dafbdf1)\"}],\"lqd_text_tag\":\"h1\",\"lqd_text_split_type\":\"words\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e087f51\"},{\"_id\":\"49acf98\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"61c5639\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},{\"_id\":\"d0c7a7c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size_mobile\":{\"unit\":\"vw\",\"size\":12,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_trigger\":\"topParentContainer\",\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"90adaae\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Air freight terminals and facilities are subject to strict security measures and we take all necessary measures.\",\"_id\":\"2e692f1\"}],\"lqd_text_tag\":\"p\",\"lqd_text_split_type\":\"words\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"d17b727\"},{\"_id\":\"0ff9abe\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"feea344\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"02fd6fe\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_typography_font_family\":\"Inter\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"lqd_text_typography_font_weight\":\"400\",\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1.5\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]},\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_text_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"19a2aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"color_normal\":\"var(--e-global-color-a606f90)\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"hover_icon_custom_x\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"hover_icon_custom_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"lqd_inview_trigger\":\"topParentContainer\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"color_hover\":\"var(--e-global-color-dafbdf1)\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"c6f68d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"147a08f\"},{\"_id\":\"06f523a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"15024c0\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"4a2d58b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"animation\":\"bounceInUp\"},\"elements\":[{\"id\":\"2cb8f36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2024\\/02\\/container.webp\",\"id\":1752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b996601\"},{\"_id\":\"59105f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"7453df2\"},{\"_id\":\"2f1fb80\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e96a98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"content_width\":\"full\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"9bf0463\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"63a58c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Pads\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/logistics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"button_icon_effect_custom\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"694b412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"c82e678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brake Shoes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link_type\":\"local_scroll\",\"local_scroll_offset\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"5dd42bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"7326281\"},{\"_id\":\"bc40e63\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"lqd_inview_keyframes_all\":[{\"_id\":\"bb82e4e\",\"y\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"24760ea\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a8df547\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore J1-Brakes\",\"align\":\"justify\",\"selected_icon\":{\"value\":\"akar-icons ai-arrow-up-right\",\"library\":\"akar-icons\"},\"button_hover_effect\":\"none\",\"button_icon_hover_effect\":\"custom\",\"hover_icon_custom_rotateZ\":{\"unit\":\"px\",\"size\":135,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":false},\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[{\"_id\":\"73ce648\",\"background\":\"color\",\"color\":\"var(--e-global-color-primary)\"}],\"button_icon_margin\":{\"unit\":\"custom\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"auto\",\"isLinked\":false},\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33.33,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3782cc1\"},{\"_id\":\"cfcb8de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81c5fef\"},{\"_id\":\"e6de375\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"color_normal\":\"var(--e-global-color-47490ef)\",\"border_normal_border\":\"solid\",\"color_hover\":\"var(--e-global-color-a606f90)\",\"button_icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"button_icon_margin_laptop\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"custom\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-28,\"sizes\":[]},\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_normal_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_normal_color\":\"var(--e-global-color-2ed0690)\",\"border_hover_border\":\"solid\",\"border_hover_color\":\"var(--e-global-color-primary)\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_expand\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9509bc0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"07ad8e4\"},{\"_id\":\"7f57197\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e1ccf93\"},{\"_id\":\"a536667\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/stripe@2x.png\",\"id\":216,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"flex_justify_content\":\"space-between\"},\"elements\":[{\"id\":\"1cc15a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/brake-disc.png\",\"id\":1864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":-180.2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-150,\"sizes\":[]},\"_z_index\":0,\"lqd_parallax\":\"yes\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"3f28982\",\"y\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},{\"_id\":\"77db96b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"16ea3cb\"},{\"_id\":\"a4cb738\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6c7d141\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"flex_gap\":{\"column\":\"0\",\"row\":\"25\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"a7cad1e\"},{\"_id\":\"b26f8d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"4dadf0b\"},{\"_id\":\"12c357d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet_extra\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_aa_perspective\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"ec6b773\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Brake\\n Solutions.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_text_typography_typography\":\"custom\",\"_element_width\":\"initial\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9bb9cc3\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply chain \",\"_id\":\"8a124c4\"},{\"_id\":\"83e8f04\",\"text\":\"management, warehousing, distribution, \",\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\"},{\"_id\":\"86deeab\",\"text\":\"transportation.\"}],\"lqd_text_tag\":\"p\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.015,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"cd5a277\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2e3a \\u00a0 Track Shipment\",\"background_normal_liquid_background_items\":[],\"background_hover_liquid_background_items\":[],\"icon_background_normal_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_background_liquid_background_items\":[],\"lqd_sticky_background_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_background_liquid_background_items\":[],\"dark_background_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ba70cd5\"},{\"_id\":\"64f121e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a12500f\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"0a7c9b9\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"button_icon_effect\":\"move-left\",\"button_icon_hover_effect\":\"move-right\",\"button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"button_hover_effect\":\"move-right\",\"lqd_inview\":\"yes\",\"button_link\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/shipment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-button\"}],\"isInner\":true},{\"id\":\"74a24c4\",\"elType\":\"widget\",\"settings\":{\"active_item\":0,\"items\":[{\"title\":\"Exceptional Friction\",\"content\":\"Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"e44a71e\"},{\"title\":\"Reduced Noise Emission\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"4991663\"},{\"title\":\"International Shipment\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"889cd6a\"},{\"title\":\"Rapid Response Time\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"49da747\"},{\"title\":\"Reliable Performance\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"2e27ebd\"},{\"title\":\"Shipping and Logistics\",\"content\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"_id\":\"d239b77\"}],\"trigger_icon_closed\":{\"value\":\"akar-icons ai-plus\",\"library\":\"akar-icons\"},\"trigger_icon_opened\":{\"value\":\"akar-icons ai-minus\",\"library\":\"akar-icons\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b199bd5\"},{\"_id\":\"ebf85d4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"878905b\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]}},{\"_id\":\"99f211e\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"trigger_icon_position\":\"next_to_title\",\"trigger_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_border\":\"solid\",\"trigger_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"trigger_border_color\":\"var(--e-global-color-2ed0690)\",\"trigger_icon_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.35\",\"isLinked\":false},\"trigger_icon_margin_laptop\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"trigger_icon_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_color\":\"var(--e-global-color-5b35d73)\",\"content_color_laptop\":\"var(--e-global-color-primary)\",\"content_color_tablet_extra\":\"var(--e-global-color-primary)\",\"content_color_tablet\":\"var(--e-global-color-primary)\",\"content_color_mobile\":\"var(--e-global-color-primary)\",\"content_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"enable_trigger_icon_visible_on_hover_active\":\"yes\",\"trigger_color_hover\":\"var(--e-global-color-primary)\",\"trigger_color_hover_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_hover_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_hover_mobile\":\"var(--e-global-color-primary)\",\"trigger_color_active\":\"var(--e-global-color-primary)\",\"trigger_color_active_laptop\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet_extra\":\"var(--e-global-color-primary)\",\"trigger_color_active_tablet\":\"var(--e-global-color-primary)\",\"trigger_color_active_mobile\":\"var(--e-global-color-primary)\",\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"content\":\"
Our Ocean Freight service offers cost-effective, eco-friendly solutions for shipping your goods across the globe. Leveraging partnerships with major carriers, we ensure secure, reliable sea transport.<\\/p>\"},\"elements\":[],\"widgetType\":\"lqd-accordion\"}],\"isInner\":false},{\"id\":\"20db145\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"055\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4d64058\"},{\"_id\":\"e91658e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"56a8ebe\"},{\"_id\":\"abaece2\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12d8aa4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"120\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"477d729\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Freight Services.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"9ac9959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ee1f92\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4993413\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"b8d4c97\",\"elType\":\"widget\",\"settings\":{\"cells\":[{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\",\"_id\":\"58edfde\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"_id\":\"3b91aff\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"f872458\"},{\"_id\":\"6a19633\",\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"box_title\":\"Road Freight\",\"box_subtitle\":\"Explore services\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Air Freight\",\"box_subtitle\":\"Explore services\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"8b110ba\"},{\"cell_content_type\":\"el_template\",\"name\":\"John Doe\",\"title\":\"Developer\",\"cell_templates\":\"272\",\"edit_liquid_box\":\"yes\",\"box_title\":\"Ocean Freight\",\"box_subtitle\":\"\",\"box_image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/air-freight.jpg\",\"id\":1866,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"box_description\":\"\",\"_id\":\"6421ea5\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"39db942\"},{\"_id\":\"2cb3ea3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a496456\",\"y\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"28d36d4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"wrap_around\":\"yes\",\"cell_width\":{\"unit\":\"%\",\"size\":32.5,\"sizes\":[]},\"cell_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"cell_border_border\":\"solid\",\"cell_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"cell_border_color\":\"var(--e-global-color-aa8e668)\",\"nav_dimensions\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true,\"width\":\"40\",\"height\":\"40\"},\"nav_placement\":\"inside\",\"nav_align\":\"end\",\"nav_orientation_h\":\"end\",\"nav_offset_y\":{\"unit\":\"px\",\"size\":-120,\"sizes\":[]},\"nav_color\":\"var(--e-global-color-5b35d73)\",\"nav_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"nav_color_hover\":\"var(--e-global-color-a606f90)\",\"nav_background_hover_background\":\"color\",\"nav_background_hover_color\":\"var(--e-global-color-primary)\",\"cell_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"nav_align_mobile\":\"space-between\",\"nav_orientation_v_mobile\":\"bottom\",\"nav_offset_y_bottom_mobile\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"cell_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"cell_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"cell_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"nav_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-carousel\"}],\"isInner\":true},{\"id\":\"28ed06e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"741b764\"},{\"_id\":\"070d066\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"74a50a0\"},{\"_id\":\"8fb757f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41d2bc9\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Years of Expertise\",\"_id\":\"8ec2d88\"}],\"lqd_text_tag\":\"p\",\"lqd_text_typography_typography\":\"custom\",\"lqd_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"lqd_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.188,\"sizes\":[]},\"lqd_text_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment\":\"center\",\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce393a8\"},{\"_id\":\"c11b390\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"899c390\"},{\"_id\":\"35703ef\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"lqd_text_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"ee86930\",\"elType\":\"widget\",\"settings\":{\"count_to\":42,\"dynamic_counter_list\":[{\"counter_label\":\"50k\",\"counter_value\":\"6.90\",\"_id\":\"fb49132\"},{\"counter_label\":\"100k\",\"counter_value\":\"9.90\",\"_id\":\"594b906\"},{\"counter_label\":\"150k\",\"counter_value\":\"12.90\",\"_id\":\"33a9992\"},{\"counter_label\":\"200k\",\"counter_value\":\"15.90\",\"_id\":\"6455621\"},{\"counter_label\":\"500k\",\"counter_value\":\"19.90\",\"_id\":\"9ff3df9\"}],\"lqd_counter_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"b579349\"},{\"_id\":\"37043a3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"0edd1d1\"},{\"_id\":\"c90bfde\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"counter_typography_typography\":\"custom\",\"counter_typography_font_size\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"counter_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"counter_typography_line_height_laptop\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"counter_typography_line_height_tablet_extra\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"lqd-counter\"},{\"id\":\"d8b7dee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/j1brakes.gkrsteels.com\\/wp-content\\/uploads\\/2024\\/06\\/1.png\",\"id\":1867,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"fcc08fe\"},{\"_id\":\"b6d7a94\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e4d40f5\",\"x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"skewX\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"8a956db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"luminosity\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-image\"}],\"isInner\":true},{\"id\":\"f0b5658\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"2c07f6b\"},{\"_id\":\"fe1fd2e\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"dc6dba1\"},{\"_id\":\"49b152d\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f95e41a\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Leading experience\",\"_id\":\"bfc9ea3\"}],\"lqd_text_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"12\",\"bottom\":\"6\",\"left\":\"12\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"184f163\"},{\"_id\":\"8c27125\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"466091a\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"b50b26f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=1c775b2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"302b4c7\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Why Choose J1-Brakes?\",\"_id\":\"8129e42\"}],\"_element_width\":\"inherit\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"1c08060\"},{\"_id\":\"4c8f53a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"11c6148\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c1b09d3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=6b6095e\"},\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_stagger\":{\"unit\":\"px\",\"size\":0.035,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"781f1b6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"90b08bb\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"534a177\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Transshipment Hubs\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"77247f6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"9065c96\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Reliable Schedules\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"94716ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"220b384\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Environmental Friendliness\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"4122f9e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Access to Remote Destinations\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"e7240f0\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"High Cargo Capacity\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"91079a6\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Flexibility in Packaging\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"c6e6c96\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"293c148\"},{\"_id\":\"47574c3\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a92e8d8\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"9dc52ae\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"background_hover_background\":\"classic\",\"background_hover_color\":\"#FFFFFF\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"25\",\"bottom\":\"18\",\"left\":\"25\",\"isLinked\":false},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"lqd_inview\":\"yes\"},\"elements\":[{\"id\":\"3708cac\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Trade Routes Optimization\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"3acb219\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Cost-effective Solutions\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b2a84f7\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Long-term Contracts\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b47f267\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/check.svg\",\"id\":348},\"library\":\"svg\"},\"title\":\"Suitable for Heavy Goods\",\"title_tag\":\"p\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"ed90766\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"separate_content\":\"yes\",\"separate_content_placement\":\"start\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"de2ecaa\"},{\"_id\":\"fff1579\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"747b4ca\"},{\"_id\":\"b139fe7\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7ebb86a\"},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"30b8d9d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"85\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"af78775\"},{\"_id\":\"2e1fc5a\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e2f53ec\"},{\"_id\":\"f5e6f47\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"width\":{\"unit\":\"%\",\"size\":\"\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=2ed0690\"}},\"elements\":[{\"id\":\"88bc71a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/dots.png\",\"id\":409,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1260,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_laptop\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_z_index\":0,\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0d6ff26\"},{\"_id\":\"0e64cfc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"84c4f10\"},{\"_id\":\"6ea9f3c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[]},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"6666f9b\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Top-Quality Brake Solutions\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"4cd5034\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"efbc159\"},{\"_id\":\"895b1f9\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ba6497b\"},{\"_id\":\"ae66373\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6448929\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Explore services\",\"_id\":\"f129e8b\"}],\"lqd_text_tag\":\"h6\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0cd50bc\"},{\"_id\":\"8c600ce\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"06096d0\",\"x\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"c552449\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"8487355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ee5b56a\"},{\"_id\":\"259e162\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"e872b04\",\"scaleX\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},{\"_id\":\"db1fc22\",\"transformOriginX\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"__globals__\":{\"color\":\"globals\\/colors?id=2ed0690\"},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"e90b1c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"0ac9ff6\"},{\"_id\":\"fae109f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"9a4106d\"},{\"_id\":\"f7b2732\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"flex_align_items\":\"flex-start\"},\"elements\":[{\"id\":\"2a376a8\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Premium Material\",\"subtitle\":\"1\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/explore.svg\",\"id\":388},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"b4d006e\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Superior Performance\",\"subtitle\":\"2\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/language.svg\",\"id\":383},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"c1e6c8b\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"title\":\"Long-lasting Durability\",\"subtitle\":\"3\",\"description\":\"
Our commitment to excellence ensures unmatched performance and safety on every journey. Trust J-1 Brakes to keep you moving forward with confidence.<\\/p>\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"9e34c3b\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"94addea\"},{\"_id\":\"7228a4f\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8342d4c\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"abd698b\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/preliminary.svg\",\"id\":384},\"library\":\"svg\"},\"subtitle_tag\":\"p\",\"separate_content\":\"yes\",\"separate_content_parts\":[\"subtitle\"],\"separate_content_placement\":\"top\",\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_typography_typography\":\"globals\\/typography?id=46e46a9\",\"_border_color\":\"globals\\/colors?id=aa8e668\"},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"40\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"eb69693\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"84c1b68\"},{\"_id\":\"1161fac\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"8c1aa83\"},{\"_id\":\"df23328\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"1234d07\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Have a project in mind? You\\u2019re welcome to send a \",\"_id\":\"d8ee6cd\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"e70b313\",\"text\":\"message\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"d1cfd77\",\"text\":\" or \",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},{\"_id\":\"c4cf209\",\"text\":\"give us a call.\",\"item_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"text_individual_styles\":\"yes\",\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\",\"item_color\":\"var(--e-global-color-primary)\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_background_color_mobile_extra\":\"\",\"item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_background_hover_color_mobile_extra\":\"\",\"item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_h_mobile_extra\":\"\",\"image_placement_floating_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_orientation_v_mobile_extra\":\"\",\"image_placement_floating_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_placement_floating_offset_y_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"highlight_fill_color_position_mobile_extra\":\"\",\"highlight_fill_color_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_repeat_mobile_extra\":\"\",\"highlight_fill_color_size_mobile_extra\":\"\",\"highlight_fill_color_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_fill_color_slideshow_background_size_mobile_extra\":\"\",\"highlight_fill_color_slideshow_background_position_mobile_extra\":\"\",\"highlight_animation_duration_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_animation_delay_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_bottom_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_offset_left_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"highlight_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"item_mask_image_position_mobile_extra\":\"\",\"item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_repeat_mobile_extra\":\"\",\"item_mask_image_size_mobile_extra\":\"\",\"item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"position_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"item_z_index_mobile_extra\":\"\",\"dark_image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_mask_image_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"dark_item_mask_image_position_mobile_extra\":\"\",\"dark_item_mask_image_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_repeat_mobile_extra\":\"\",\"dark_item_mask_image_size_mobile_extra\":\"\",\"dark_item_mask_image_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_mask_image_slideshow_background_size_mobile_extra\":\"\",\"dark_item_mask_image_slideshow_background_position_mobile_extra\":\"\",\"dark_item_background_color_mobile_extra\":\"\",\"dark_item_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_item_background_hover_color_mobile_extra\":\"\",\"dark_item_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dark_item_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}}],\"lqd_text_tag\":\"p\",\"lqd_text_alignment\":\"center\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"62f543e\"},{\"_id\":\"b5c81a1\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile_extra\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"beb4d2d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"724188f\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile_extra\":[],\"lqd_inview_keyframes_mobile\":[],\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"_border_color\":\"#7070701F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"lqd_text_color\":\"var(--e-global-color-5b35d73)\",\"lqd_inview\":\"yes\",\"lqd_text_whitespace_mobile_extra\":\"\",\"lqd_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_alignment_mobile_extra\":\"\",\"lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dark_lqd_text_text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width_mobile_extra\":\"\",\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self_mobile_extra\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index_mobile_extra\":\"\",\"lqd_parallax_devices_popover_mobile_extra\":\"\",\"lqd_parallax_settings_mobile_extra_ease\":\"expo.out\",\"lqd_parallax_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_parallax_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_parallax_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_parallax_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_inview_devices_popover_mobile_extra\":\"\",\"lqd_inview_settings_mobile_extra_ease\":\"expo.out\",\"lqd_inview_settings_mobile_extra_duration\":{\"unit\":\"px\",\"size\":0.65,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_stagger\":{\"unit\":\"px\",\"size\":0.065,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_start_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_enable\":\"\",\"lqd_inview_settings_mobile_extra_animation_repeat\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_repeat_delay\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"lqd_inview_settings_mobile_extra_animation_yoyo\":\"\",\"lqd_inview_settings_mobile_extra_animation_yoyo_ease\":\"\",\"lqd_aa_opacity_normal_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_opacity_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_aa_perspective_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"lqd_sticky__margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_color_mobile_extra\":\"\",\"lqd_sticky__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_sticky__background_hover_color_mobile_extra\":\"\",\"lqd_sticky__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_color_mobile_extra\":\"\",\"lqd_dark__border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"lqd_dark__background_hover_color_mobile_extra\":\"\",\"lqd_dark__border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation_mobile_extra\":\"\",\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position_mobile_extra\":\"\",\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_repeat_mobile_extra\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_size_mobile_extra\":\"\",\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_mobile_extra\":\"\",\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat_mobile_extra\":\"\",\"hide_mobile_extra\":\"\",\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=7ebb86a\"}},\"elements\":[],\"widgetType\":\"lqd-text\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f649c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"15\",\"bottom\":\"160\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e916579\"},{\"_id\":\"fb9a21b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d8233b9\"},{\"_id\":\"f9580db\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_align_items\":\"center\",\"flex_wrap\":\"wrap\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"a32aa81\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"item_content\":\"Stackable item #1\",\"_id\":\"e01fb82\",\"content_type\":\"el_template\",\"content_templates\":\"872\"},{\"item_content\":\"Stackable item #1\",\"content_type\":\"el_template\",\"content_templates\":\"872\",\"_id\":\"b2006c7\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca1f771\"},{\"_id\":\"a12f7ff\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"87e67dd\"},{\"_id\":\"168ea26\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_element_width\":\"inherit\",\"adaptive_height\":\"yes\",\"slides_indicator_align\":\"start\",\"slides_indicator_placement_h\":\"end\",\"slides_indicator_offset_x_end\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"slides_indicator_offset_x_end_laptop\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"slides_indicator_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"slides_indicator_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"slides_indicator_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"slides_indicator_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"slides_indicator_slides_indicator_color_mobile\":\"#FFFFFF\",\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"lqd-stack\"}],\"isInner\":false},{\"id\":\"7ed2a14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"lqd_section_color_scheme\":\"dark\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/grid.svg\",\"id\":458,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/noise-1.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"15\",\"bottom\":\"140\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"4cb3832\"},{\"_id\":\"98839cc\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"273c03e\"},{\"_id\":\"9944de4\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"80dc830\",\"elType\":\"widget\",\"settings\":{\"lqd_text_content\":[{\"text\":\"Flexibility in logistics.\",\"_id\":\"8a124c4\"}],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"441b071\"},{\"_id\":\"8cc6ce8\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"a549e8d\",\"y\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"1029847\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"lqd_text_typography_typography\":\"globals\\/typography?id=a054e68\"},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"lqd_text_split_type\":\"words\",\"lqd_text_alignment_mobile\":\"center\",\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-text\"},{\"id\":\"91fd90d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"wrap\",\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"17d0631\"},{\"_id\":\"c107796\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"b1b630c\"},{\"_id\":\"5cf2685\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"50\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"2414b66\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"a9d9983\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon.svg\",\"id\":469},\"library\":\"svg\"},\"title\":\"Pickup and Delivery\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"27eeb55\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f437daf\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-1.svg\",\"id\":471},\"library\":\"svg\"},\"title\":\"Container Shipping\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"dd0ccc1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"d74c31f\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-2.svg\",\"id\":470},\"library\":\"svg\"},\"title\":\"Ocean Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":13,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true},{\"id\":\"1b597a2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"6ea2cae\"},{\"_id\":\"851ed3b\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"81f89ad\"},{\"_id\":\"9f177b3\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"606dc75\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-3.svg\",\"id\":468},\"library\":\"svg\"},\"title\":\"Air Freight\",\"description\":\"\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"263ecdc\"}],\"ib_title\":\"Click here\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"text_align\":\"center\",\"icon_effect_hover\":\"rise\",\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#FFFFFF\",\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"e305434\"},{\"_id\":\"64281b4\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"ee82b4d\"},{\"_id\":\"548d9bb\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ead48e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"c5a472a\"},{\"_id\":\"2d9feb2\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"02783dd\"},{\"_id\":\"4c7f96c\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"lqd_el_container_bg_liquid_background_items\":[]},\"elements\":[{\"id\":\"f7081fc\",\"elType\":\"widget\",\"settings\":{\"image_liquid_background_items\":[],\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/icon-5.svg\",\"id\":577},\"library\":\"svg\"},\"title\":\"Track your shipment.\",\"icon_list\":[{\"text\":\"London, UK\",\"_id\":\"46cb4cc\"}],\"ib_title\":\"\\u2e3a \\u00a0 Learn more\",\"ib_background_normal_liquid_background_items\":[],\"ib_background_hover_liquid_background_items\":[],\"ib_icon_background_normal_liquid_background_items\":[],\"ib_icon_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_background_liquid_background_items\":[],\"lqd_sticky_ib_background_hover_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_liquid_background_items\":[],\"lqd_sticky_ib_icon_background_hover_liquid_background_items\":[],\"dark_ib_background_liquid_background_items\":[],\"dark_ib_background_hover_liquid_background_items\":[],\"dark_ib_icon_background_liquid_background_items\":[],\"dark_ib_icon_background_hover_liquid_background_items\":[],\"content_background_liquid_background_items\":[],\"content_background_hover_liquid_background_items\":[],\"image_overlay_hover_liquid_background_items\":[],\"icon_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"icon_background_liquid_background_items\":[],\"icon_background_hover_liquid_background_items\":[],\"lqd_sticky_content_background_liquid_background_items\":[],\"lqd_sticky_content_background_hover_liquid_background_items\":[],\"lqd_sticky_image_overlay_hover_liquid_background_items\":[],\"lqd_sticky_icon_background_liquid_background_items\":[],\"lqd_sticky_icon_background_hover_liquid_background_items\":[],\"dark_content_background_liquid_background_items\":[],\"dark_content_background_hover_liquid_background_items\":[],\"dark_image_overlay_hover_liquid_background_items\":[],\"dark_icon_background_liquid_background_items\":[],\"dark_icon_background_hover_liquid_background_items\":[],\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ce30f68\"},{\"_id\":\"2c94fbd\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"3a5736b\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"3fb9085\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"description\":\"
Through a unique combination of engineering, construction and design<\\/strong><\\/span> disciplines and expertise, Thanks to our advanced technological infrastructure and expert staff<\\/strong><\\/span>, such as supply.<\\/p>\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.95,\"sizes\":[]},\"title_tag\":\"h2\",\"ib_selected_icon\":{\"value\":\"akar-icons ai-arrow-right\",\"library\":\"akar-icons\"},\"ib_button_hover_effect\":\"move-right\",\"ib_button_icon_effect\":\"move-left\",\"ib_button_icon_hover_effect\":\"move-right\",\"ib_button_icon_size\":{\"unit\":\"em\",\"size\":1.15,\"sizes\":[]},\"title_typography_font_family\":\"PP Agrandir\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"lqd_inview\":\"yes\"},\"elements\":[],\"widgetType\":\"lqd-box\"},{\"id\":\"7ce2b7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/staging.liquid-themes.com\\/logistics-international\\/wp-content\\/uploads\\/2023\\/10\\/container.jpg\",\"id\":568,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_overlay_liquid_background_items\":[],\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"lqd_parallax_settings_trigger_start\":\"top bottom\",\"lqd_parallax_settings_trigger_end\":\"bottom top\",\"lqd_parallax_keyframes_all\":[{\"_id\":\"ca73a96\"},{\"_id\":\"3c396de\"}],\"lqd_parallax_keyframes_laptop\":[],\"lqd_parallax_keyframes_tablet_extra\":[],\"lqd_parallax_keyframes_tablet\":[],\"lqd_parallax_keyframes_mobile\":[],\"lqd_inview_keyframes_all\":[{\"_id\":\"d85a765\",\"x\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"scaleX\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"scaleY\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},{\"_id\":\"31bf9ba\"}],\"lqd_inview_keyframes_laptop\":[],\"lqd_inview_keyframes_tablet_extra\":[],\"lqd_inview_keyframes_tablet\":[],\"lqd_inview_keyframes_mobile\":[],\"blend_mode\":\"darken\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_flex_order_tablet\":\"start\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"lqd_inview\":\"yes\",\"lqd_inview_settings_start_delay\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"lqd-image\"},{\"id\":\"70a71df\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"title\":\"Air Freight\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> <\\/span>chain management, warehousing, distribution, transportation.<\\/p>\",\"_id\":\"24977ac\"},{\"title\":\"Road Freight Services\",\"content\":\"Thanks to our advanced technological infrastructure and expert staff, such as supply<\\/strong> chain management, warehousing, distribution, transportation. adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"9436b06\"},{\"title\":\"Operational Cost\",\"content\":\"